forked from kbr/fritzconnection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.63 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
from setuptools import setup, find_packages
from fritzconnection import package_version
with open('README.rst') as file:
the_long_description = file.read()
setup(
name = 'fritzconnection',
version = package_version,
packages = find_packages(),
license = 'MIT',
description = 'Communicate with the AVM FritzBox',
long_description = the_long_description,
author = 'Klaus Bremer',
author_email = '[email protected]',
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',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords = 'AVM FritzBox',
python_requires = ">= 3.6",
install_requires = [
'requests>=2.22.0',
],
entry_points={'console_scripts': [
'fritzconnection = fritzconnection.cli.fritzinspection:main',
'fritzcall = fritzconnection.cli.fritzcall:main',
'fritzhomeauto = fritzconnection.cli.fritzhomeauto:main',
'fritzhosts = fritzconnection.cli.fritzhosts:main',
'fritzphonebook = fritzconnection.cli.fritzphonebook:main',
'fritzstatus = fritzconnection.cli.fritzstatus:main',
'fritzwlan = fritzconnection.cli.fritzwlan:main',
]}
)