forked from elisemercury/AutoClean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.24 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
from setuptools import setup
import os
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, "README.md")) as f:
long_description = f.read()
setup(
name = 'py-AutoClean',
packages = ['AutoClean'],
version = 'v1.1.3',
license='MIT',
description = 'AutoClean - Python Package for Automated Preprocessing & Cleaning of Datasets',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Elise Landman',
author_email = '[email protected]',
url = 'https://github.com/elisemercury/AutoClean',
download_url = 'https://github.com/elisemercury/AutoClean/archive/refs/tags/v1.1.3.tar.gz',
keywords = ['automated', 'cleaning', 'preprocessing', "autoclean"],
install_requires=[
'scikit-learn',
'numpy',
'pandas',
'loguru'
],
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.8',
'Programming Language :: Python :: 3.9',
],
)