-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·39 lines (31 loc) · 984 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
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
import os
import pytun
setup(
name = "pytun",
description = "Python TUN/TAP tunnel module",
py_modules = ["pytun"],
test_suite = "tests",
version = pytun.__version__,
author = pytun.__author__,
author_email = pytun.__email__,
url = "https://github.com/Gawen/pytun",
license = pytun.__license__,
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)