-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (44 loc) · 1.3 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
39
40
41
42
43
44
45
46
47
from setuptools import setup
setup(
name='whatpulse',
version='1.0.0',
description='WhatPulse reverse engineered',
url='https://github.com/sim642/whatpulse',
author='Simmo Saan',
author_email='simmo.saan@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only'
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX',
'Environment :: No Input/Output (Daemon)',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
keywords='whatpulse module daemon evdev input network monitoring reverse-engineered',
packages=[
'whatpulse',
'whatpulsed'
],
install_requires=[
'python-daemon',
'evdev',
'lxml',
'requests'
],
package_data={
'whatpulse': [
'whatpulse.pem'
]
},
entry_points={
'console_scripts':[
'whatpulsed=whatpulsed.whatpulsed:main',
'whatpulse_computerinfo=whatpulsed.computerinfo:main'
]
}
)