This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
63 lines (53 loc) · 2.19 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
#!/usr/bin/env python
# Copyright (c) 2020, Pureport, Inc
# All Rights Reserved.
import os
from setuptools import setup, find_packages
from pureport import __version__, __author__
def main():
base_path = os.path.dirname(__file__)
with open(os.path.join(base_path, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(base_path, 'requirements.txt')) as f:
requirements = f.readlines()
setup(
name="pureport-python",
version=__version__,
description="Python library for consuming the Pureport Fabric API",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
],
keywords="pureport multicloud fabric network cloud automation",
author=__author__,
author_email="[email protected]",
url="https://www.pureport.com",
project_urls={
"Documentation": "https://pureport-python.readthedocs.io",
"Code": "https://github.com/pureport/pureport-python",
"Issue tracker": "https://github.com/pureport/pureport-python/issues"
},
license="MIT",
packages=find_packages(),
install_requires=requirements,
include_package_data=True,
python_requires="!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
)
if __name__ == '__main__':
main()