-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
44 lines (41 loc) · 1.36 KB
/
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
40
41
42
43
44
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__name__), "README.md")) as f:
long_description = f.read()
setup(
name="acapi2",
version="2.1.2",
url="https://github.com/pmatias/python-acquia-cloud-2",
download_url="https://pypi.org/project/acapi2",
license="MIT",
author="Matt Katz",
author_email="matt@ceruleanhq.nl",
description="Acquia Cloud API v2 client library.",
long_description=long_description,
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
],
platforms="any",
python_requires=">=3.6",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"backoff>=1.10.0,<2",
"http-hmac-python>=2.4.1,<3",
"requests>=2.25.0,<=3.0",
"requests-cache>=0.5.2,<1.0.2",
"setuptools>=38.5",
],
)