forked from freelunchtheorem/Conditional_Density_Estimation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='cde',
version='0.5.1',
long_description=long_description,
description='Framework for conditional density estimation',
url='https://jonasrothfuss.github.io/Nonparametric_Density_Estimation',
author='Jonas Rothfuss, Fabio Ferreira',
author_email='[email protected], [email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'Keras',
'numpy',
'pandas',
'tensorflow>=1.4,<=1.7.0',
'matplotlib',
'edward>=1.3.4,<=1.3.5',
'seaborn',
'scipy==1.2.1',
'pytest',
'scikit_learn',
'statsmodels',
'ml_logger<=99.99',
'progressbar2',
'xlrd'
],
dependency_links=["https://github.com/jonasrothfuss/ml_logger/archive/2000b38177e3c4892e4fee74d769c1fc0a659424.zip#egg=ml_logger-99.99"],
zip_safe=False)