-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1009 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='easypreprocessing',
version='1.0.3',
description='An easy to use pre-processing utility for machine learning.',
long_description=long_description,
long_description_content_type="text/markdown",
url='',
author='Shreyas Kudav',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords='machine learning',
packages=find_packages(),
install_requires=['numpy ','pandas','seaborn ','sklearn','kneed','imbalanced-learn'],
py_modules=['easypreprocessing'],
scripts=['easypreprocessing.py'],
entry_points={
'console_scripts': ['easypreprocessing=easypreprocessing:main']
}
)