-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (40 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·43 lines (40 loc) · 1.16 KB
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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
try:
README = read('README.md')
except Exception:
README=""
setup(
name = "update-ip",
version = "0.2.2",
url = 'http://github.com/bkonkle/update-ip',
license = 'BSD',
description = "An extensible dynamic IP updater.",
long_description = README,
author = 'Brandon Konkle',
author_email = 'brandon.konkle@gmail.com',
packages = [
'update_ip',
'update_ip.services',
'update_ip.ip_getters',
],
scripts=['update_ip/update-ip'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
]
)