-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
32 lines (31 loc) · 884 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
from setuptools import setup, find_packages
setup(
name='edgegrid-python',
version='2.0.0',
description='{OPEN} client authentication protocol for python-requests',
url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
namespace_packages=['akamai'],
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
'requests>=2.24.0',
'requests_toolbelt>=0.9.1',
'pyOpenSSL>=19.1.0',
'ndg-httpsclient>=0.5.1',
'pyasn1>=0.4.8',
'urllib3>=1.25.10'
],
extras_require={
'dev': [
'pylint>=2.7.0',
'pytest>=6.1.0',
'pytest-cov>=2.12.1'
],
},
include_package_data=True,
license='Apache 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
]
)