-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 981 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
with open('README.md') as fd:
readme = fd.read()
setup(name='DynHost',
version='1.0.5',
description='Multiple DynDNS updating script',
long_description=readme,
keywords='dynhost dyndhs ovh',
classifiers=[
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Networking"],
license="GPLv3",
author="François Schmidts",
author_email="[email protected]",
maintainer="François Schmidts",
maintainer_email="[email protected]",
scripts=['dynhost'],
packages=['dynhost_lib'],
url='https://github.com/jaesivsm/DynHost',
install_requires=['requests>=2.10.0'],
data_files=[('', ['dynhost.service', 'README.md'])],
)