Added boilerplate files for PyPI package

This commit is contained in:
Joseph Henry
2017-12-15 17:19:18 -08:00
parent 8ec82b026a
commit bf9e145450
5 changed files with 787 additions and 0 deletions

13
packages/PyPI/setup.py Normal file
View File

@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'libzt',
packages = ['libzt'],
version = '1.1.5',
description = 'Library version of ZeroTier',
author = 'Joseph Henry',
author_email = 'joseph@zerotier.com',
url = 'https://github.com/zerotier/libzt',
download_url = 'https://github.com/zerotier/libzt/archive/1.1.5.tar.gz',
keywords = ['virtual', 'network', 'socket', 'lwip', 'network stack'],
classifiers = [],
)