-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (31 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from resend.version import get_version
install_requires = open("requirements.txt").readlines()
setup(
name="resend",
version=get_version(),
description="Resend Python SDK",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
author="Derich Pacheco",
author_email="[email protected]",
url="https://github.com/resendlabs/resend-python",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"resend": ["py.typed"]},
install_requires=install_requires,
zip_safe=False,
python_requires=">=3.7",
keywords=["email", "email platform"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)