-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (36 loc) · 1.11 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
# Copyright 2015 University of Edinburgh
# Licensed under GPLv3 - see README.md for information
from setuptools import setup, find_packages
setup(
name='read-device',
version='3.2.1',
description='Collect metrics from real-world devices',
url='https://github.com/lewiseason/read-device',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: System :: Monitoring',
],
author='Lewis Eason',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'lxml',
'texttable',
'requests',
'peewee',
],
entry_points='''
[console_scripts]
device=read_device.commands.device:main
meters=read_device.commands.meters:main
'''
)