-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
44 lines (38 loc) · 1.52 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
from setuptools import setup, find_packages
setup(
name="createsend",
version='9.1.3',
description="A library which implements the complete functionality of the Campaign Monitor API.",
author='Campaign Monitor',
author_email='support@campaignmonitor.com',
url="https://campaignmonitor.github.io/createsend-python/",
license="MIT",
keywords="createsend campaign monitor email",
packages=find_packages('lib'),
package_dir={'': 'lib'},
package_data={'': ['cacert.pem']},
classifiers=[
"Development Status :: 5 - Production/Stable",
# Who and what the project is for
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: Communications :: Email",
"Topic :: Communications :: Email :: Mailing List Servers",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
# License classifiers
"License :: OSI Approved :: MIT License",
"License :: DFSG approved",
"License :: OSI Approved",
# Generally, we support the following.
"Programming Language :: Python",
"Programming Language :: Python :: 3",
# Specifically, we support the following releases.
"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",
"Programming Language :: Python :: 3.13",
]
)