forked from TheLastGimbus/D-Link_Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.25 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
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
README = (HERE/"README.md").read_text()
setuptools.setup(
name="dlink-scraper",
version="1.0.5",
description="Scraper for getting data from D-Link DWR-921 LTE router",
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/TheLastGimbus/D-Link_Scraper',
author='TheLastGimbus',
author_email='[email protected]',
license='Apache',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Networking :: Monitoring'
],
install_requires=(HERE/'requirements.txt').read_text().split('\n'),
entry_points={
'console_scripts': [
'dlinkscraper=dlinkscraper.__main__:main',
'dlinkscraper-duckdns-update=dlinkscraper._duckdns_update_script:main'
]
}
)