-
-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.14 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.14 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
__author__ = 'iokulist'
from setuptools import setup # type: ignore[import-untyped]
# https://github.com/okigan/awscurl/issues/167
# with open("requirements.txt", "r", encoding="utf-8") as f:
# requirements = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
# https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary
setup(
name='awscurl',
version='0.42',
description='Curl like tool with AWS request signing',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/okigan/awscurl',
author='Igor Okulist',
author_email='okigan@gmail.com',
license='MIT',
packages=['awscurl'],
# package_data={
# 'tests': ['*.py'],
# },
entry_points={
'console_scripts': [
'awscurl = awscurl.__main__:main',
],
},
zip_safe=False,
install_requires=[
'requests',
'configargparse',
'configparser',
'urllib3',
"boto3",
"botocore",
"awscrt"
],
extras_require={
'awslibs': []
}
)