-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
38 lines (35 loc) · 1.24 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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
required = ['Pillow>=3.1.2',
'voluptuous>=0.9.3',
'PyYAML>=3.11',
'matplotlib>=1.0',
'paho-mqtt',
'pytest',
'pydocstyle']
setup(name='infopanel',
version='0.1',
description='Live data and simple animation rendering for little display panels.',
author='Nick Touran',
author_email='[email protected]',
url='https://github.com/partofthething/infopanel',
packages=find_packages(),
license='GPL',
long_description=long_description,
install_requires=required,
keywords='monitoring mqtt animation led rgb matrix',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'Topic :: System :: Monitoring',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
test_suite='tests',
include_package_data=True
)