-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.33 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1.33 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
# PyNAT: Discover external IP addresses and NAT topologies using STUN.
# Copyright (C) 2022 Ariel A. Licensed under the MIT license.
#
# setup.py
from setuptools import setup
from pynat import __version__, url
with open('README.rst', 'r') as f:
long_description = f.read()
setup(name='pynat',
version=__version__,
description='Discover external IP addresses and NAT topologies using STUN.',
long_description=long_description,
author='Ariel A',
author_email='arant@mit.edu',
url=url,
py_modules=['pynat'],
package_data={'*': ['README.rst']},
entry_points={'console_scripts': ['pynat = pynat:main']},
license='MIT',
classifiers=['License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Networking :: Firewalls',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
python_requires='>=2.7')