|
a |
|
b/setup.py |
|
|
1 |
import setuptools |
|
|
2 |
|
|
|
3 |
with open("README.md", "r") as fh: |
|
|
4 |
long_description = fh.read() |
|
|
5 |
|
|
|
6 |
with open('requirements.txt') as f: |
|
|
7 |
required = f.read().splitlines() |
|
|
8 |
|
|
|
9 |
setuptools.setup( |
|
|
10 |
name="hippo-vnet", |
|
|
11 |
version="0.0.1", |
|
|
12 |
author="Nicola Altini", |
|
|
13 |
author_email="nicola.altini@poliba.it", |
|
|
14 |
description="Hippocampus Segmentation from MRI using 3D Convolutional Neural Networks in PyTorch", |
|
|
15 |
long_description=long_description, |
|
|
16 |
long_description_content_type="text/markdown", |
|
|
17 |
url="https://github.com/Nicolik/HippocampusSegmentationMRI", |
|
|
18 |
packages=setuptools.find_packages(), |
|
|
19 |
classifiers=[ |
|
|
20 |
"Programming Language :: Python :: 3", |
|
|
21 |
"License :: OSI Approved :: MIT License", |
|
|
22 |
"Operating System :: OS Independent", |
|
|
23 |
], |
|
|
24 |
python_requires='>=3.7', |
|
|
25 |
test_suite='tests', |
|
|
26 |
install_requires=required, |
|
|
27 |
) |