-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (38 loc) · 1.06 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
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup.py for DataComp."""
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
PACKAGES = setuptools.find_packages(where='src')
setuptools.setup(
name="datacomp",
version='0.0.7-dev',
author="Colin Birkenbihl",
author_email="[email protected]",
description="Systematic comparisons of multiple datasets",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/Cojabi/datacomp",
packages=PACKAGES,
package_dir={'': 'src'},
license = "Apache 2.0 License",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
'pandas',
'xlrd',
'numpy',
'scipy',
'sklearn',
'matplotlib_venn',
'pymatch',
'matplotlib',
'statsmodels',
'seaborn',
]
)