-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
setup.py
39 lines (35 loc) · 925 Bytes
/
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
__author__ = 'iokulist'
from setuptools import setup
# https://github.com/okigan/awscurl/issues/167
# with open("requirements.txt", "r", encoding="utf-8") as f:
# requirements = f.read().splitlines()
# https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary
setup(
name='awscurl',
version='0.36',
description='Curl like tool with AWS request signing',
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',
'botocore',
],
extras_require={
'awslibs': []
}
)