-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 943 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name='ctsimu',
version='1.6.0',
description='CTSimU Software Toolbox',
url='https://github.com/BAMresearch/ctsimu-toolbox/',
author='David Plotzki',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['ctsimu', 'ctsimu.processing', 'ctsimu.scenario', 'ctsimu.image_analysis', 'ctsimu.evaluation'],
python_requires='>=3.9',
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Multimedia :: Graphics :: Graphics Conversion"
],
zip_safe=True)