-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 853 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
from setuptools import setup
__version__ = "1.0.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='yctl',
version=__version__,
description='Query and control an Yggdrasil Network node with Admin API',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['yctl'],
url='https://github.com/zhoreeq/yctl',
author='zhoreeq',
author_email='zhoreeq@protonmail.com',
license='LGPL',
keywords='yggdrasil network mesh',
python_requires='>=3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python :: 3',
],
)