|
a |
|
b/setup.py |
|
|
1 |
import setuptools |
|
|
2 |
|
|
|
3 |
with open("README.md") as fh: |
|
|
4 |
long_description = fh.read() |
|
|
5 |
|
|
|
6 |
with open("requirements.txt") as fh: |
|
|
7 |
requirements = fh.readlines() |
|
|
8 |
|
|
|
9 |
setuptools.setup( |
|
|
10 |
name="lungs", |
|
|
11 |
version="0.1.5", |
|
|
12 |
author="Daniel Korat", |
|
|
13 |
author_email="dkorat@gmail.com", |
|
|
14 |
description="3D Neural Network for Lung Cancer Risk Prediction on CT Volumes", |
|
|
15 |
long_description=long_description, |
|
|
16 |
long_description_content_type = "text/markdown", |
|
|
17 |
url="https://github.com/danielkorat/Lung-Cancer-Risk-Prediction", |
|
|
18 |
packages=setuptools.find_packages(), |
|
|
19 |
install_requires=requirements, |
|
|
20 |
classifiers=[ |
|
|
21 |
"Programming Language :: Python :: 3", |
|
|
22 |
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
|
|
23 |
"Operating System :: OS Independent", |
|
|
24 |
], |
|
|
25 |
python_requires='>=3.6', |
|
|
26 |
) |