-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1 KB
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
#!/usr/bin/env python
"""
setup.py: GANdy project module repository
"""
import os
import sys
import time
from setuptools import setup, find_packages
__author__ = "Samantha Tetef, Kyle Moskowitz, Yu-Chi Fang, Yuxuan Ren, Evan Komp"
__copyright__ = "LICENSE.txt"
__version__ = "0.1.0"
setup(
name='gandy',
version=__version__,
url='https://github.com/GANdy-team/GANdy',
author=__author__,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Operating System :: OS Independant',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'
],
license=__copyright__,
description='High level tool for creating supervised machine learning models capable of estimating prediction uncertainty.',
keywords=[
'GAN',
'uncertainty',
'GP',
'BNN',
'machine_learning',
],
packages=find_packages(exclude="tests"),
python_requires='>=3.6',
install_requires=[
'numpy>=1.19.1'
]
)