-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.46 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import ml_express
# def calculate_version():
# initpy = open("ml-express/_version.py").read().split("\n")
# version = list(filter(lambda x: "__version__" in x, initpy))[0].split("'")[1]
# return version
with open("README.md", 'r') as f:
long_description = f.read()
package_version = ml_express.__version__
setup(
name="ml-express",
version=package_version,
author="Ved",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/ved93/ml-express",
license="License :: OSI Approved :: MIT License",
entry_points={"console_scripts": ["datacleaner=datacleaner:main"]},
description=("A Python library for day to day data analysis and machine learning."),
long_description= long_description,
long_description_content_type="text/markdown",
install_requires=[ 'scipy>=1.2.1',
'numpy>=1.16.2',
'pandas>=0.24',
'scikit-learn>=0.23.2',
'pandas_profiling>=2.11.0',
'matplotlib>=3.0.0',
'joblib>=0.13.2',
'Pillow>=8.2.0',
'seaborn>=0.11.0',
'graphviz>=0.16',
'sklearn-pandas>=1.8.0', #2.1.0
# 'isoweek==1.3.3',
'pandas-summary>=0.0.7']
)