forked from jtriley/pystun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 789 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
src = os.path.realpath(os.path.dirname(__file__))
README = open(os.path.join(src, 'README.rst')).read()
setup(
name='pystun',
version="0.0.4",
packages=find_packages(),
scripts=['bin/pystun'],
zip_safe=False,
license='MIT',
author='Justin Riley (original author: gaohawk)',
author_email='[email protected]',
url="http://github.com/jtriley/pystun",
description="A Python STUN client for getting NAT type and external IP (RFC 3489)",
long_description=README,
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: System :: Networking :: Firewalls",
"Programming Language :: Python",
],
)