forked from feenes/timon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (59 loc) · 1.72 KB
/
setup.py
File metadata and controls
62 lines (59 loc) · 1.72 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import find_packages
from setuptools import setup
long_description = """simple, low resource monitoring tool,
that should be able to run for example on a raspberry for
monitoring just a few nodes
"""
setup(name='timon',
version='0.3.2',
description='simple, low resource monitoring tool',
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
],
keywords='tiny monitor',
url='https://www.teledomic.eu',
author='Teledomic',
author_email='[email protected]',
license='Apache Software License',
# TODO: add discovery of packages
packages=find_packages(),
scripts=[],
entry_points={
'console_scripts': [
'timon = timon.commands:main',
'timon_build = timon.bld_commands:main',
]
},
project_urls={
"Homepage": "https://github.com/feenes/timon",
"Documentation": "https://github.com/feenes/timon",
"Source": "https://github.com/feenes/timon",
"SayThanks": "https://github.com/feenes",
"Funding": "https://donate.pypi.org",
"Tracker": "https://github.com/feenes/timon/issues",
},
install_requires=[
'click',
'cryptography',
'mytb',
'minibelt',
'pyyaml',
'requests',
],
extra_requires=dict(
all=[
"trio",
"trio-asyncio",
],
trio=[
"trio",
"trio-asyncio",
],
),
python_requires='>=3.6, <4',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-asyncio'],
zip_safe=False,
include_package_data=True,
)