-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1011 Bytes
/
setup.py
File metadata and controls
39 lines (36 loc) · 1011 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
29
30
31
32
33
34
35
36
37
38
39
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="squaad",
version="2.1",
author='Iordanis Fostiropoulos',
author_email='danny.fostiropoulos@gmail.com',
description='Helper functions for running queries, ml pipeline, statistical analysis on SQUAAD framework',
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/fostiropoulos/squaad",
packages=setuptools.find_packages(),
package_data={
'squaad': ['sql/*']
},install_requires=[
'psycopg2-binary',
'xlwt',
'GitPython',
'SQLAlchemy',
'imbalanced-learn',
'imblearn',
'matplotlib',
'numpy',
'pandas',
'python-dateutil',
'scipy',
'seaborn',
'sklearn'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
],
)