File: setup.py

package info (click to toggle)
python-edgegrid 1.3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: python: 573; makefile: 17
file content (29 lines) | stat: -rw-r--r-- 934 bytes parent folder | download
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
from setuptools import setup, find_packages
setup(
    name='edgegrid-python', 
    version='1.3.1',
    description='{OPEN} client authentication protocol for python-requests',
    author='Jonathan Landis',
    author_email='jlandis@akamai.com',
    maintainer='Akamai Developer Experience team',
    maintainer_email='dl-devexp-eng@akamai.com',
    url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
    namespace_packages=['akamai'],
    packages=find_packages(),
    python_requires=">=2.7.10",
    install_requires=[
        'requests>=2.3.0',
        'requests_toolbelt>=0.9.0',
        'pyOpenSSL>=19.0.0',
        'ndg-httpsclient',
        'pyasn1',
        'urllib3'
    ],
    include_package_data=True,
    license='Apache 2.0',
    classifiers=[
        'License :: OSI Approved :: Apache Software License',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
    ]
)