-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
41 lines (39 loc) · 1.44 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
38
39
40
41
# Imports
from setuptools import setup, find_packages
# Loading README file
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='kolmov',
version='2.0.5',
license='GPL-3.0',
description='A Framework for performing cross validation for Ringer tunings',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
author='Micael Veríssimo de Araújo, Gabriel Gazola Milan, João Victor da Fonseca Pinto',
author_email='micael.verissimo@lps.ufrj.br, gabriel.milan@lps.ufrj.br, jodafons@lps.ufrj.br',
url='https://github.com/micaelverissimo/kolmov',
keywords=['framework', 'validation', 'machine-learning',
'ai', 'plotting', 'data-visualization'],
install_requires=[
"numpy>=1.16.6,<2.0a0",
"pandas==1.3.5",
"matplotlib==3.5.1",
"seaborn==0.11.2",
"Gaugi>=1.0.0",
"tensorflow==2.3.1",
"scikit-learn==1.0.2",
"onnxruntime==1.8.0",
"keras2onnx==1.7.0"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)