-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
63 lines (60 loc) · 2.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
#
# PowerDNS web api python client and interface (python-powerdns)
#
# Copyright (C) 2018 Denis Pompilio (jawa) <[email protected]>
#
# This file is part of python-powerdns
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the MIT License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MIT License for more details.
#
# You should have received a copy of the MIT License along with this
# program; if not, see <https://opensource.org/licenses/MIT>.
import os
import setuptools
if __name__ == '__main__':
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
release = "2.1.0"
setuptools.setup(
name="python-powerdns",
version=release,
url="https://github.com/outini/python-powerdns",
author="Denis Pompilio (jawa)",
author_email="[email protected]",
maintainer="Denis Pompilio (jawa)",
maintainer_email="[email protected]",
description="PowerDNS web api python client and interface",
long_description=open(readme_file).read(),
long_description_content_type='text/markdown',
license="MIT",
platforms=['UNIX'],
scripts=['bin/pdns-create-zone'],
packages=['powerdns'],
package_dir={'powerdns': 'powerdns'},
data_files=[
('share/doc/python-powerdns', ['README.md', 'LICENSE', 'CHANGES']),
],
keywords=['dns', 'powerdns', 'api'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Environment :: Web Environment',
'Topic :: Utilities',
],
requires=['urllib3', 'requests']
)