-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 847 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='Graphtiny',
version='0.0.8',
description='A Python library that lets you display graph in streaming, simply and easily. Especially suitable for scientific use. It Is an abstraction layer for the PyQtGraph library',
author='Carlos Canicio',
author_email='canicio@lcc.uma.es',
url='https://github.com/canicio/graphtiny',
download_url='https://github.com/canicio/graphtiny/archive/0.0.8.tar.gz',
maintainer='Carlos Canicio',
maintainer_email='canicio@lcc.uma.es',
license='MIT (Massachusetts Institute of Technology)',
packages=['graphtiny'],
# packages=find_packages(),
install_requires=[
'PyQt5',
'pyqtgraph',
],
keywords=['graph', 'ui', 'chart', 'plot'],
classifiers=[],
)