You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
431 B
13 lines
431 B
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 = [], |
|
)
|
|
|