14 lines
431 B
Python
14 lines
431 B
Python
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 = [],
|
|
)
|