forked from utamid/iscpy_modified
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 1.01 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys, os
version = '1.8'
setup(
name='iscpy',
version=version,
description="Python library to parse ISC style config files.",
long_description="""\
ISCpy is a robust ISC config file parser. It has virtually unlimited
possibilities for depth and quantity of ISC config files. ISC config
files include BIND and DHCP config files among a few others.
""",
classifiers=[
'Programming Language :: Python :: 3.5 :: Only'
],
keywords='isc config bind dhcp parser dns python',
author='Stephen Egbert',
author_email='egberts@github.com',
url='https://github.com/egberts/python3-iscpy',
license='BSD 3-Clause',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points="""
""",
)