-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.41 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils import setup, find_packages
import sys
if sys.version_info < (3, 3):
install_requires = ['ipaddress']
else:
install_requires = []
setup(
name='pypcalc',
version='0.2',
author='EasyPost OSS',
author_email='[email protected]',
url='https://github.com/easypost/pypcalc',
license='ISC',
packages=find_packages(exclude=['tests']),
keywords=['networking'],
description='Simple command-line tool for analyzing network addresses',
install_requires=install_requires,
entry_points={
'console_scripts': [
'pypcalc = pypcalc.__main__:main',
]
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'License :: OSI Approved :: ISC License (ISCL)',
'Topic :: System :: Networking'
]
)