-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (24 loc) · 994 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008,2009,2014,2020 Jochen Küpper <[email protected]>
import os
from setuptools import setup
extra_compile_args = []
library_dirs = []
long_description = """CMI Python extensions
Python extensions for calculations relevant to the manipulation of molecules.
Original author: Jochen Küpper <[email protected]>
Current maintainer: Jochen Küpper <[email protected]>
"""
setup(name="cmiext",
author = "Jochen Küpper",
author_email = "[email protected]",
description = "CMI Python extensions",
license = "GPL v3",
url = "https://www.controlled-molecule-imaging.org/research/further_projects/software",
version = "1.0.1.dev0",
long_description = long_description,
packages = ['cmiext'],
data_files = [("", ["LICENSE", "COPYING", "README.devel.md"])]
)