We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19cbbd4 commit d80e8a3Copy full SHA for d80e8a3
1 file changed
Python/setup.py
@@ -0,0 +1,25 @@
1
+from setuptools import setup, find_packages
2
+
3
+with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
6
+setup(
7
+ name="temp-mail-so",
8
+ version="1.0.0",
9
+ author="TempMail.so",
10
+ author_email="author@tempmail.so",
11
+ description="A Python SDK for TempMail.so temporary email service",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/TempMailAPI/Temp-Mail-AP",
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ],
21
+ python_requires=">=3.6",
22
+ install_requires=[
23
+ "requests>=2.25.1",
24
25
+)
0 commit comments