-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
64 lines (53 loc) · 1.7 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup
setup(
name = "yangson",
packages = ["yangson"],
use_scm_version = True,
setup_requires=["setuptools_scm"],
description = "Library for working with data modelled in YANG",
author = "Ladislav Lhotka",
author_email = "lhotka@nic.cz",
url = "https://github.com/CZ-NIC/yangson",
entry_points = {
"console_scripts": ["yangson=yangson.__main__:main"]
},
package_data = {
"yangson": ["py.typed"]
},
install_requires = ["PyXB"],
tests_require = ["pytest"],
keywords = ["yang", "data model", "configuration", "json"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Systems Administration"],
long_description = """\
.. |date| date::
******************
Welcome to Yangson
******************
:Author: Ladislav Lhotka <lhotka@nic.cz>
:Date: |date|
*Yangson* is a Python 3 library for working with `JSON encoded`_
configuration and state data modelled using the YANG_
data modelling language.
Installation
============
::
python -m pip install yangson
Note that *Yangson* requires Python 3.6 or higher.
Links
=====
* `Git repository`_
* `Documentation`_
.. _JSON encoded: https://tools.ietf.org/html/rfc7951
.. _YANG: https://tools.ietf.org/html/rfc7950
.. _Git repository: https://github.com/CZ-NIC/yangson
.. _Documentation: https://yangson.labs.nic.cz
"""
)