-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
67 lines (61 loc) · 2.32 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
64
65
66
67
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for the bind9_parser module distribution."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import io
# The text of the README file
README_name = __file__.replace('setup.py', 'README.md')
with io.open(README_name, encoding='utf8') as README:
bind9_parser_main_doc = README.read()
packages = [
'bind9_parser',
]
bind9_parser_version = '0.99.2'
setup( # Distribution meta-data
name='bind9_parser',
version=bind9_parser_version,
description='Bind9 configuration file parsing module',
long_description=bind9_parser_main_doc,
long_description_content_type='text/markdown',
author='Steve Egbert',
author_email='egberts@yahoo.com',
keywords='bind9 configuration parser isc named.conf',
url='https://github.com/egberts/bind9_parser',
download_url='https://github.com/egberts/bind9_parser/archive/0.9.98.5.tar.gz',
license='MIT License',
packages=packages,
python_requires='>=3.7',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=['pyparsing'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: Text Processing',
'Topic :: Utilities',
],
)