forked from CZ-NIC/yangson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (49 loc) · 1.61 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
from setuptools import setup
setup(
name = "yangson",
python_requires=">=3.6",
packages = ["yangson"],
use_scm_version = True,
setup_requires=["setuptools_scm"],
description = "Library for working with data modelled in YANG",
author = "Ladislav Lhotka",
author_email = "[email protected]",
url = "https://github.com/CZ-NIC/yangson",
entry_points = {
"console_scripts": ["yangson=yangson.__main__:main"]
},
install_requires = ["elementpath"],
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 <[email protected]>
:Date: |date|
*Yangson* is a Python 3 library for working with 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`_
.. _YANG: https://tools.ietf.org/html/rfc7950
.. _Git repository: https://github.com/CZ-NIC/yangson
.. _Documentation: https://yangson.labs.nic.cz
"""
)