-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
42 lines (36 loc) · 1.21 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
#!/usr/bin/env python
"""
DNS Zone File
==============
"""
from setuptools import setup, find_packages
version = "0.1.17"
setup(
name='zonefile_parser',
version=version,
url='https://github.com/aredwood/zone-file-parser',
license='MIT',
author='Alex Redwood',
download_url=f"https://github.com/aredwood/zone-file-parser/archive/{version}.tar.gz",
author_email='[email protected]',
maintainer='Alex Redwood',
maintainer_email='[email protected]',
description="library for parsing dns zone files",
keywords='parse dns zone file',
packages=find_packages(),
zip_safe=False,
install_requires=[
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)