-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.45 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.45 KB
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
"""Backward-compatible setup.py for older pip versions."""
from setuptools import setup, find_packages
setup(
name="cycletask",
version="1.0.0",
description="Official Python SDK for the CycleTask Mail Forwarding API",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="CycleTask",
author_email="support@task-cycle.com",
url="https://github.com/cycletask/cycletask-python",
license="MIT",
packages=find_packages(include=["cycletask*"]),
package_data={"cycletask": ["py.typed"]},
python_requires=">=3.8",
install_requires=[
"httpx>=0.24.0",
"typing_extensions>=4.0; python_version < '3.11'",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-httpx>=0.21",
"ruff>=0.1.0",
"mypy>=1.0",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
],
)