-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
30 lines (26 loc) · 1.01 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
__author__ = 'Brian M Anderson'
# Created on 9/15/2020
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='DicomRTTool',
author='Brian Mark Anderson',
author_email='[email protected]',
version='2.1.9',
description='Services for reading dicom files, RT structures, and dose files, as well as tools for '
'converting numpy prediction masks back to an RT structure',
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={'DicomRTTool': 'src/DicomRTTool'},
packages=['DicomRTTool'],
include_package_data=True,
url='https://github.com/brianmanderson/Dicom_RT_and_Images_to_Mask',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
install_requires=required,
)