forked from kbr/fritzconnection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.59 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
from setuptools import setup, find_packages
with open('README.rst') as file:
the_long_description = file.read()
setup(
name = 'fritzconnection',
version = '1.0a1',
packages = find_packages(),
license = 'MIT',
description = 'Communicate with the AVM FritzBox',
long_description = the_long_description,
author = 'Klaus Bremer',
author_email = 'bremer@bremer-media.de',
url = 'https://github.com/kbr/fritzconnection',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords = 'AVM FritzBox',
install_requires = [
'lxml>=4.3.4',
'requests>=2.22.0',
],
entry_points={'console_scripts': [
'fritzconnection = fritzconnection.cli.fritzinspection:main',
# 'fritzhosts = fritzconnection.fritzhosts:main',
# 'fritzwlan = fritzconnection.fritzwlan:main',
# 'fritzmonitor = fritzconnection.fritzmonitor:main',
'fritzstatus = fritzconnection.cli.fritzstatus:main',
# 'fritzphonebook = fritzconnection.fritzphonebook:main',
# 'fritzcallforwarding = fritzconnection.fritzcallforwarding:main',
# 'fritzcall = fritzconnection.fritzcall:main',
]}
)