forked from bortzmeyer/dns-lg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 771 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# distribute
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(name='DNS-LG',
version='2013030501',
description='DNS Looking Glass',
license='BSD',
author='Stephane Bortzmeyer',
author_email='[email protected]',
url='https://github.com/bortzmeyer/dns-lg',
download_url='https://github.com/bortzmeyer/dns-lg/tarball/master',
packages=['DNSLG',],
provides=['DNSLG',],
install_requires=[] # We require netaddr, simpletal, webob and
# dnspython but Python cannot find them,
# even when installed :-( Packaging in
# Python is completely broken, anyway
)