-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
46 lines (43 loc) · 1.5 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
44
45
46
from setuptools import setup, find_packages
with open("README.md", "r") as cd:
long_description = cd.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name='datasist',
version='1.5.3',
license='MIT',
description='A Python library for easy data analysis, visualization, exploration and modeling',
long_description=long_description,
long_description_content_type="text/markdown",
author='Rising Odegua',
author_email='[email protected]',
url='https://github.com/risenW/datasist',
keywords=['Data Analysis', 'Feature Engineering', 'Visualization', 'project management', 'modeling', 'machine learning'],
download_url='https://github.com/risenW/datasist/archive/v1.5.3.tar.gz',
packages = find_packages(),
entry_points = {
'console_scripts': [
'startproject = datasist.project:startproject'
]
},
install_requires=[
'pandas',
'matplotlib',
'seaborn',
'numpy',
'jupyter',
'scikit-learn',
'nltk',
'Joblib'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)