-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
45 lines (40 loc) · 1.56 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
36
37
38
39
40
41
42
43
44
45
from setuptools import find_packages, setup
install_requires = ["requests>=2.20.0"]
with open("README.rst") as file:
long_description = file.read()
setup(
name="postmarker",
url="https://github.com/Stranger6667/postmarker",
version="1.0",
license="MIT",
author="Dmitry Dygalo",
author_email="dadygalo@gmail.com",
maintainer="Dmitry Dygalo",
maintainer_email="dadygalo@gmail.com",
keywords=["postmark", "api", "client", "email"],
description="Python client library for Postmark API",
long_description=long_description,
long_description_content_type="text/x-rst",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications :: Email",
],
include_package_data=True,
install_requires=install_requires,
entry_points={"pytest11": ["postmark = postmarker.pytest"]},
)