-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
This module sets up the package and is run everytime the package is installed.
"""
import setuptools
install_requires = [
'ctgan',
'sdv',
'torch<2,>=1.0',
'torchvision<1,>=0.4.2',
'scikit-learn==0.24.1',
'numpy==1.22.0',
'pandas<2,>=0.24',
'rdt>=0.2.7,<=0.4.0',
'packaging',
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name = "SuperconGAN",
version = "0.2.5",
author = "Rajeev Atla",
author_email = "rajeev@rajeevatla.com",
description = "GAN trained on superconductivity data",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/RajeevAtla/SuperconGAN",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Natural Language :: English',
"Operating System :: OS Independent",
],
packages = setuptools.find_packages(),
python_requires = '>=3.6',
install_requires = install_requires,
license = 'MIT Licence'
)