-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 854 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 854 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
from setuptools import setup, find_namespace_packages
setup(
name='edgegrid-python',
version='2.0.6',
description='{OPEN} client authentication protocol for python-requests',
url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
packages=find_namespace_packages(),
python_requires=">=3.10",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
'requests>=2.24.0',
'requests_toolbelt>=0.9.1',
],
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',
]
)