forked from Nuchimik/mailerlite-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.05 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
from setuptools import find_packages, setup
__version__ = "0.1.1"
def _read_long_description():
try:
with open("readme.rst") as fd:
return fd.read()
except Exception:
return None
setup(
name="mailerlite",
version=__version__,
author="MailerLite",
author_email="[email protected]",
url="https://developers.mailerlite.com/",
description="The official Python SDK for MailerLite API.",
long_description=_read_long_description(),
license="MIT",
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
],
# Packages and dependencies
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=[],
extras_require={},
# Other configurations
zip_safe=False,
platforms="any",
)