-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (46 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
"""
Setup script for EvalNE-GUI. You can install the library globally using:
python3 setup.py install
Or for a single user with:
python3 setup.py install --user
Run the library using:
evalne_gui
"""
from setuptools import setup, find_packages
setup(
name="evalne_gui",
version='0.1.0',
url="https://github.com/Dru-Mara/EvalNE-GUI",
license="MIT License",
author="Alexandru Mara",
author_email='[email protected]',
description="Plotly Dash based GUI for EvalNE",
long_description=open("./README.md").read(),
long_description_content_type="text/markdown",
keywords='dashboard visualization evaluation monitoring evalne',
packages=find_packages(),
python_requires='>3.6',
zip_safe=False,
tests_require=["pytest", "pytest-cov"],
include_package_data=True,
install_requires=[
'numpy',
'plotly',
'dash-daq',
'dash_bootstrap_components',
'dash',
'fa2',
'psutil'
],
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
],
entry_points={'console_scripts': ['evalne_gui = evalne_gui.__main__:main']},
)