-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·45 lines (40 loc) · 1 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
draw_requirements = [
'networkx',
'pygraphviz'
]
mesh_requirements = [
'numpy-stl'
]
dev_requirements = [
'sphinx',
'sphinx_rtd_theme',
'myst-parser'
]
setup(
name='flexcalc',
version='1.0.0',
description='CT data pre- and post-processing tools, simulation of spectral data, and batch-processing of large number of datasets',
url='https://github.com/cicwi/flexcalc',
long_description=readme,
long_description_content_type='text/markdown',
author='Alex Kostenko',
license='GNU General Public License v3',
packages=find_packages(include=['flexcalc']),
install_requires=[
'numpy',
'tqdm',
'simpleitk',
'scipy',
'scikit-image',
'flexdata',
'flextomo'
],
extras_require={
'dev': dev_requirements,
'draw': draw_requirements,
'mesh': mesh_requirements
}
)