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