-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
54 lines (48 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
setup(
name="createsend",
version='7.0.0',
description="A library which implements the complete functionality of the Campaign Monitor API.",
author='Campaign Monitor',
author_email='support@campaignmonitor.com',
url="http://campaignmonitor.github.io/createsend-python/",
license="MIT",
keywords="createsend campaign monitor email",
install_requires=[
'six>=1.10',
],
test_suite='test',
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 :: 2",
"Programming Language :: Python :: 3",
# Specifically, we support the following releases.
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"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",
]
)