-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 917 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 917 Bytes
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
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.05'
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=[],
keywords='isc config bind dhcp parser dns python',
author='Jacob C. Collins',
author_email='jc@purdue.edu',
url='',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points="""
""",
)