-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathsetup.py
33 lines (28 loc) · 781 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
__author__ = 'iokulist'
from setuptools import setup
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.27',
description='Curl like tool with AWS request signing',
url='http://github.com/okigan/awscurl',
author='Igor Okulist',
author_email='[email protected]',
license='MIT',
packages=['awscurl'],
# package_data={
# 'tests': ['*.py'],
# },
entry_points={
'console_scripts': [
'awscurl = awscurl.__main__:main',
],
},
zip_safe=False,
install_requires=requirements,
extras_require={
'awslibs': ["botocore"]
}
)