-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='ccMonkey',
version='0.1',
description='Listener for jenkins cc.xml file suitable for Raspberry PI (or similar boards)',
long_description='Parses and interprets projects statuses from Jenkins, when one project of intrest fails than it oscilate one of raspberry\'s GPIO, all the inputs and outputs are configurable from a basic settings file',
author='Tiberiu Corbu',
author_email='tiberiu.corbu@gmail.com',
scripts=['mercurio/mercurio-run.py'],
license='MIT',
eurl='https://github.com/tiberiucorbu/ccMonkey',
include_package_data=True,
classifiers=[
'Development Status :: 0.1 Alpha',
'Intended Audience :: Makers',
'License :: MIT License',
'Operating System :: Linux ARM',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=find_packages(exclude=['tests']),
requires=['pyserial', 'clint'],
install_requires=['pyserial', 'clint'],
)