-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 956 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
25
26
27
28
29
__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='SegmentationEvaluationTools',
author='Brian Mark Anderson',
author_email='bmanderson@mdanderson.org',
version='0.0.9',
description='Tools for evaluating predictions on Simple-ITK Images',
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={'SegmentationEvaluationTools': 'src/SegmentationEvaluationTools'},
packages=['SegmentationEvaluationTools'],
include_package_data=True,
url='https://github.com/brianmanderson/Segmentation_Evaluation_Tools',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
install_requires=required,
)