-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.54 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="django-mailchimp-amp",
packages=find_packages(),
package_data={"django_mailchimp_amp": ["templates/mailchimp/*.html", "templates/mailchimp/*.css"]},
use_scm_version=True,
author="Crt Mori",
author_email="[email protected]",
url="https://github.com/letme/django-mailchimp-amp",
description="Django app for easy embeding of MailChimp subscription form in AMP page",
long_description_content_type="text/x-rst",
long_description=open("README.rst", encoding="utf-8").read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Environment :: Plugins",
"Framework :: Django",
"Framework :: Django :: 3.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: GPLv3 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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
],
keywords=["django", "mailchimp", "amp"],
install_requires=["mailchimp3>=3.0.13", "Django >= 3.0",],
setup_requires=["nose", "readme", "setuptools_scm"],
tests_require=["Django", "requests >= 2.19", "coverage"],
test_suite="nose.collector",
)