-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows :: Windows 11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.11'
]
setup(
name='prevhlib',
version='0.2.0',
description='Data Mining package implementing the PrevhClassifier algorithm.',
long_description=
f"{open('README.md').read()}\n\n" +
f"{open('CHANGELOG.txt').read()}\n\n",
long_description_content_type="text/markdown",
url='https://github.com/JCGCosta/Prevh',
author='Júlio César Guimarães Costa',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
classifiers=classifiers,
keywords='DataMining',
#py_modules=["prevh", "Assets"],
#package_dir={'': 'prevh'},
packages=find_packages(),
install_requires=['numpy', 'pandas', 'matplotlib', 'scikit-learn', 'seaborn']
)