-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
58 lines (50 loc) · 1.71 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import codecs
from setuptools import setup, find_packages
def read(*parts):
return codecs.open(os.path.join(os.path.abspath(
os.path.dirname(__file__)), *parts)).read()
tests_require = ['nose', 'tox']
setup(
name='uipcalc',
description='Universal (IPv4/IPv6) IP address and netmask calculator',
long_description=read('README.rst'),
version='0.3.3',
author='Andre Sencioles',
author_email='[email protected]',
license='ISC License',
url='https://github.com/asenci/uipcalc/',
platforms='any',
keywords='ip ipv4 ipv6 net subnet network netmask calc calculator',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
# 'Environment :: Console :: Curses',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: System :: Networking',
'Topic :: Utilities',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'uipcalc = uipcalc:main',
],
},
install_requires=['six'],
extras_require={
':python_version<"3.3"': ['ipaddress'],
'testing': tests_require
},
tests_require=tests_require,
test_suite='nose.collector',
)