forked from frc1678/lime-plotter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.01 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.01 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="frc1678-lime-plotter",
version="0.5.3",
author="Wes Hardaker",
author_email="opensource@hardakers.net",
description="A matplotlib based plotter for FRC logs and networktables",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/frc1678/lime-plotter",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'lime-plotter.py = frc1678.limeplotter.main:main',
'lime-server.py = frc1678.limeplotter.networktablesserver:main',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires = '>=3',
install_requires=[
'pynetworktables',
'numpy',
'pandas',
'pyyaml',
'matplotlib',
],
test_suite='nose.collector',
tests_require=['nose'],
)