Skip to content

Commit d80e8a3

Browse files
authored
Create setup.py
1 parent 19cbbd4 commit d80e8a3

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Python/setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)