-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (38 loc) · 999 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
31
32
33
34
35
36
37
38
39
40
41
"""
For references of this file, see
* https://github.com/pypa/sampleproject
* https://packaging.python.org/en/latest/
"""
from setuptools import setup, find_packages
setup(
# packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=[
"awscli~=2.17",
"boto3~=1.21",
"click~=8.1",
"jmespath~=1.0",
"requests~=2.27",
],
# Additional groups of dependencies. They can be install by using
# the "extras" syntax, for example:
#
# $ pip install <module-name>[dev]
extras_require={
"dev": [
"build~=1.2",
"pipenv-setup~=3.2",
"twine~=5.1",
"wheel~=0.34",
],
"test": [],
},
# Needed by the pipenv-setup tool.
dependency_links=[],
entry_points={
"console_scripts": [
"pcolrm=pcolrm.pcolrm:main",
"qaws=qaws.qaws:cli",
"webhook=webhook.webhook:main",
],
},
)