|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup, find_packages |
|
|
2 |
import platform |
|
|
3 |
|
|
|
4 |
with open("requirements.txt") as f: |
|
|
5 |
requirements = f.read().splitlines() |
|
|
6 |
|
|
|
7 |
if 'win' in platform.platform().lower(): |
|
|
8 |
with open("requirements.windows.addon.txt") as f: |
|
|
9 |
requirements += f.read().splitlines() |
|
|
10 |
|
|
|
11 |
setup( |
|
|
12 |
name="adpkd-segmentation", |
|
|
13 |
version="1.0", |
|
|
14 |
description="ADPKD Segmentation model in PyTorch", |
|
|
15 |
author="Akshay Goel", |
|
|
16 |
author_email="akshay.k.goel@gmail.com", |
|
|
17 |
packages=find_packages( |
|
|
18 |
include=["adpkd_segmentation", "adpkd_segmentation.*"] |
|
|
19 |
), |
|
|
20 |
license="MIT", |
|
|
21 |
install_requires=requirements, |
|
|
22 |
long_description=open("README.md").read(), |
|
|
23 |
) |