forked from lucascastro/python-iproute2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.16 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
# coding=utf-8
from distutils.core import setup
f = open('README.rst')
try:
readme_content = f.read()
except:
readme_content = ''
finally:
f.close()
setup(
name='python-iproute2',
version='0.1.5',
packages=['iproute2'],
url='https://github.com/nwhalen/python-iproute2',
download_url='https://github.com/nwhalen/python-iproute2/tarball/master',
author='Nick Whalen',
long_description=readme_content,
requires=['cidrize (>=0.6.3)'],
packages=['iproute2'],
provides=[''],
keywords='iproute2',
author_email='[email protected]',
description='iproute2 helper package for Python',
license='Apache License 2.0',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)