-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (51 loc) · 1.82 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
55
import warnings
from setuptools import find_packages, setup
try:
README = open("README.md").read() + "\n\n"
README += open("CHANGELOG.md").read()
except: # noqa: E722
warnings.warn("Could not read README.md and/or CHANGELOG.md")
README = None
version = __import__("mailinglist").__version__
setup(
name="django-mailinglist",
version=version,
description=(
"Django app for managing multiple mailing lists with both "
"plaintext as well as HTML templates (facilitated by Markdown)."
),
long_description=README,
long_description_content_type="text/markdown",
install_requires=[
"Django>=3.2.0",
"Markdown>=3.3.0",
"django-enumfield>=3.0",
"django-appconf>=1.0.0",
],
author="Paul Stiverson",
author_email="[email protected]",
url="http://github.com/thismatters/django-mailinglist/",
packages=find_packages(exclude=("tests", "test_project")),
include_package_data=True,
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Only",
"Topic :: Utilities",
],
)