-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
59 lines (51 loc) · 1.8 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
57
58
59
from setuptools import setup, find_packages
import os
here = os.path.dirname(os.path.abspath(__file__))
def requirements():
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
return f.read().splitlines()
def version(*parts):
version_file = os.path.join(*parts)
version_ns = {}
with open(version_file) as f:
exec(f.read(), {}, version_ns)
return version_ns['__version__']
setup(
name='chunky3d',
description='A 3D array-like NumPy-based data structure for large sparsely-populated volumes',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
version=version(here, 'chunky3d', '_version.py'),
license='MIT',
install_requires=requirements(),
extras_require={
'all': [
'itk',
'itk-thickness3d',
'networkx',
'scikit-image',
'SimpleITK',
'vtk',
]
},
packages=find_packages(),
keywords=['3d', 'array', 'chunked', 'sparse'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
, project_urls={
'Source': 'https://github.com/K3D-tools/chunky3d',
'Tracker': 'https://github.com/K3D-tools/chunky3d/issues',
}
)