forked from DanielPuentee/outdpik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.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 distutils.core import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'outdpik',
packages = ['outdpik'],
version = '1.5',
license= 'GNU',
description = 'The fundamental toolkit for outliers search and visualization',
author = 'Iker Cumplido and Daniel Puente',
author_email = 'ikumpli@gmail.com',
url = 'https://github.com/DanielPuentee/outdpik',
download_url = 'https://github.com/DanielPuentee/outdpik/archive/refs/tags/1.5.tar.gz',
keywords = ['OUTLIERS', 'VISUALIZATION', 'PANDAS'],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'pandas',
'numpy',
'seaborn',
'scipy',
'matplotlib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)