-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup_legacy.py
More file actions
54 lines (49 loc) · 1.6 KB
/
setup_legacy.py
File metadata and controls
54 lines (49 loc) · 1.6 KB
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
from os import path
from apigee import APP
from apigee import __version__ as version
from apigee import description
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
SETUP_ARGS = dict(
name=APP,
version=version,
description=(description),
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/darumatic/apigee-cli",
author="Matthew Delotavo",
author_email="matthew.t.delotavo@gmail.com",
license="Apache license 2.0",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
],
entry_points={"console_scripts": ["apigee=apigee.__main__:main"]},
install_requires=[
"click>=8.1.3",
"click-aliases>=1.0.1",
"click-option-group>=0.5.5",
"colorama>=0.4.6",
"GitPython>=3.1.34",
"PyJWT>=2.6.0",
"pyotp>=2.8.0",
"python-gnupg>=0.3.5",
"requests>=2.31.0",
"tabulate>=0.9.0",
"tqdm>=4.64.1",
],
project_urls={
"Documentation": "https://darumatic.github.io/apigee-cli/index.html"
},
python_requires=">=3.7",
)
if __name__ == "__main__":
from setuptools import find_packages, setup
SETUP_ARGS["packages"] = find_packages()
setup(**SETUP_ARGS)