-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
35 lines (32 loc) · 1.29 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
from setuptools import setup, find_packages
import codecs
import os
with open("README.md") as f:
long_description = f.read()
VERSION = '0.1.2'
DESCRIPTION = 'Data Science package for setup data science environment in single line'
# Setting up
setup(
name="datascienv",
version=VERSION,
author="ashishpatel26",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=['pandas', 'numpy', 'scipy', 'matplotlib', 'seaborn',
'scikit-learn', 'statsmodels', 'pyforest', 'pycaret', 'Flask', 'fastapi',
'jupyter', 'xgboost', 'imbalanced-learn', 'bokeh', 'kat',
'Boruta', 'spyder', 'mlxtend', 'lightgbm', 'catboost',
'tensorflow-cpu==2.6.0', 'tensorflow-gpu==2.6.0'],
keywords=['Datascienv', 'Data Science installation in single line', 'data science', 'datascience', 'datasci', 'datascience environment'],
url='http://github.com/ashishpatel26/datascienv',
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
platforms=["any"],
zip_safe=True,
)