forked from elisemercury/AutoClean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.42 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.0.0',
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.0.0.tar.gz', # change everytime for each new release
keywords = ['automated', 'cleaning', 'preprocessing', "autoclean"],
install_requires=[
'scikit-learn',
'numpy',
'pandas',
'loguru'
],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', #Specify which pyhton versions to support
'Programming Language :: Python :: 3.9',
],
)