-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 709 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 709 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
28
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup_args = dict(
name='opossum',
version='0.2.1',
description='Simulated Data Generating Process',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_namespace_packages(),
license='MIT',
url="https://github.com/jgitr/opossum",
author='Tobias Krebs, Julian Winkel',
author_email='julian.winkel@hu-berlin.de'
)
install_requires = [
'numpy',
'statsmodels',
'seaborn',
'matplotlib',
'scipy'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)