Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jetconf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
labs
jetconf
Commits
b11dd47b
Unverified
Commit
b11dd47b
authored
Nov 30, 2016
by
Pavel Spirek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added setup.py
parent
40ef3be5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
setup.py
setup.py
+36
-0
No files found.
setup.py
0 → 100644
View file @
b11dd47b
from
setuptools
import
setup
import
codecs
import
os
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
with
codecs
.
open
(
os
.
path
.
join
(
here
,
'README.rst'
),
encoding
=
'utf-8'
)
as
readme
:
long_description
=
readme
.
read
()
setup
(
name
=
"jetconf"
,
packages
=
[
"jetconf"
],
use_scm_version
=
True
,
setup_requires
=
[
"setuptools_scm"
],
description
=
"Pure Python implementation of RESTCONF server"
,
long_description
=
long_description
,
url
=
"https://gitlab.labs.nic.cz/labs/jetconf"
,
author
=
"Pavel Spirek"
,
author_email
=
"pavel.spirek@nic.cz"
,
entry_points
=
{
"console_scripts"
:
[
"jetconf=jetconf.__main__:main"
]
},
install_requires
=
[
"yangson"
,
"h2"
,
"colorlog"
],
tests_require
=
[
"pytest"
],
keywords
=
[
"RESTCONF"
,
"yang"
,
"data model"
,
"configuration"
,
"json"
],
classifiers
=
[
"Programming Language :: Python"
,
"Programming Language :: Python :: 3.5"
,
"Development Status :: 3 - Alpha"
,
"Intended Audience :: System Administrators"
,
"Intended Audience :: Telecommunications Industry"
,
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
,
"Operating System :: OS Independent"
,
"Topic :: System :: Monitoring"
,
"Topic :: System :: Systems Administration"
]
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment