-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
37 lines (33 loc) · 1.09 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
# Copyright 2021-2024 Nokia
from setuptools import setup
from pysros import __version__
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='pysros',
version=__version__,
packages=['pysros'],
url='https://www.nokia.com',
license='Copyright 2021-2024 Nokia. License available in the LICENSE.md file.',
author='Nokia',
author_email='',
description='Python for the Nokia Service Router Operating Systems (pySROS)',
project_urls={
"Documentation": "https://network.developer.nokia.com/static/sr/learn/pysros/latest/",
"Source": "https://github.com/nokia/pysros",
},
classifiers=[
"License :: Other/Proprietary License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Development Status :: 5 - Production/Stable",
],
install_requires=[
"ncclient~=0.6.12",
"lxml~=4.9.2",
],
python_requires=">=3.10",
long_description=long_description,
long_description_content_type="text/markdown",
)