-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.22 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.22 KB
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
import setuptools
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r") as fh:
long_description = fh.read()
setuptools.setup(
name='data-cleaning',
version='1.0',
author="Murali Krishna MOPIDEVI, Induraj P.Ramamurthy",
author_email="muralikrishna.mopidevi@gmail.com, induraj.gandhian@yahoo.com",
description="An utility to clean the data and return you the cleaned data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DataPreprocessing/DataCleaning",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
python_requires=">=3.6"
)