-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 795 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='cde',
version='1.0',
long_description=long_description,
long_description_content_type='text/markdown',
description='Framework for conditional density estimation',
url='https://github.com/freelunchtheorem/Conditional_Density_Estimation',
author='Jonas Rothfuss, Fabio Ferreira',
author_email='jonas.rothfuss@gmx.de, fabioferreira@mailbox.org',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'matplotlib',
'scipy',
'seaborn',
'pytest',
'scikit_learn',
'statsmodels',
'wandb',
],
zip_safe=False)