|
a |
|
b/setup.py |
|
|
1 |
# coding: utf-8 |
|
|
2 |
import setuptools |
|
|
3 |
|
|
|
4 |
with open("README.md", "r") as fh: |
|
|
5 |
long_description = fh.read() |
|
|
6 |
|
|
|
7 |
setuptools.setup( |
|
|
8 |
name="medigan", |
|
|
9 |
version="0.0.2", |
|
|
10 |
author="Richard Osuala, Grzegorz Skorupko, Noussair Lazrak", |
|
|
11 |
description="medigan is a modular open-source Python library that provides an interface to multiple generative models and automates synthetic dataset generation.", |
|
|
12 |
long_description=long_description, |
|
|
13 |
long_description_content_type="text/markdown", |
|
|
14 |
url="https://github.com/RichardObi/medigan", |
|
|
15 |
project_urls={ |
|
|
16 |
"Bug Tracker": "https://github.com/RichardObi/medigan/issues", |
|
|
17 |
}, |
|
|
18 |
classifiers=[ |
|
|
19 |
"Programming Language :: Python :: 3", |
|
|
20 |
"License :: OSI Approved :: MIT License", |
|
|
21 |
"Operating System :: OS Independent", |
|
|
22 |
], |
|
|
23 |
python_requires=">=3.6", |
|
|
24 |
package_dir={"": "src"}, |
|
|
25 |
packages=setuptools.find_packages(where="src"), |
|
|
26 |
install_requires=["tqdm", "requests", "torch", "numpy", "PyGithub", "matplotlib"], |
|
|
27 |
) |