forked from shubhojit-mitra-dev/thundermail-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from version import get_version
install_requires = open("requirements.txt").readlines()
setup(
name="thundermail",
version=get_version(),
description="Thundermail Python SDK",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
author="shubhojit-mitra-dev",
author_email="mitrashubhojit2005@gmail.com",
url="https://github.com/shubhojit-mitra-dev/thundermail-python-sdk/",
install_requires=install_requires,
python_requires=">=3.7",
keywords=["email","email platform"],
classifiers=[
"Development Status :: 1 - Planning",
"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",
"Programming Language :: Python :: 3.12",
],
packages=find_packages(),
)