forked from Apstra/apstra-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 727 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 727 Bytes
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
#!python3
# Copyright 2019-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/eula
import os
from setuptools import setup, find_packages
NAME = "aos-api-client"
VERSION = '0.1.17'
REQUIRES = (["requests==2.24.0"],)
setup(
name=NAME,
version=VERSION,
description="Apstra AOS API Client",
url="https://github.com/Apstra/apstra-api-python",
author="Apstra Inc",
author_email="support@apstra.com",
packages=find_packages(include=["aos"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=REQUIRES,
license="Proprietary",
keywords="aos apstra",
)