-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
56 lines (48 loc) · 1.48 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import io
import os
from setuptools import setup, find_packages
SETUP_DIR = os.path.dirname(os.path.abspath(__file__))
def readfile(filename, split=False):
with io.open(filename, encoding="utf-8") as stream:
if split:
return stream.read().split("\n")
return stream.read()
readme = readfile("README.rst", split=True)
readme.append('License')
readme.append('=======')
readme.append('')
readme.append('::')
readme.append('')
readme.append('')
# For requirements not hosted on PyPi place listings
# into the 'requirements.txt' file.
requires = [
# minimal requirements listing
"cmlibs.maths >= 0.6.2",
"cmlibs.utils >= 0.6",
"cmlibs.zinc >= 4.1",
"scipy",
"numpy",
]
source_license = readfile("LICENSE")
setup(
name="scaffoldmaker",
version="0.15.0",
description="Python client for generating anatomical scaffolds using Zinc",
long_description="\n".join(readme) + source_license,
long_description_content_type="text/x-rst",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Medical Science Apps."
],
author="Auckland Bioengineering Institute",
author_email="[email protected]",
url="https://github.com/ABI-Software/scaffoldmaker",
license="Apache Software License",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=requires,
)