-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.22 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
entry_points = {
'console_scripts': ['tomograph = tomograph.cli:main']
}
setuptools.setup(
name='tomograph',
version='0.1',
author='Filip Kokosinski',
author_email='[email protected]',
packages=setuptools.find_packages(),
include_package_data=True,
description='Parametrized computer tomography simulator',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/fkokosinski/tomograph',
install_requires=['click', 'tqdm', 'scikit-image', 'numpy==1.15.*'],
entry_points=entry_points,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)