1import os
2
3from setuptools import find_packages, setup
4
5
6setup(
7    name="django-contact-form",
8    version="1.9",
9    zip_safe=False,  # eggs are the devil.
10    description="A generic contact-form application for Django",
11    long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
12    author="James Bennett",
13    author_email="james@b-list.org",
14    url="https://github.com/ubernostrum/django-contact-form/",
15    include_package_data=True,
16    package_dir={"": "src"},
17    packages=find_packages("src"),
18    classifiers=[
19        "Development Status :: 5 - Production/Stable",
20        "Environment :: Web Environment",
21        "Framework :: Django",
22        "Framework :: Django :: 2.2",
23        "Framework :: Django :: 3.1",
24        "Framework :: Django :: 3.2",
25        "Intended Audience :: Developers",
26        "License :: OSI Approved :: BSD License",
27        "Operating System :: OS Independent",
28        "Programming Language :: Python",
29        "Programming Language :: Python :: 3",
30        "Programming Language :: Python :: 3.6",
31        "Programming Language :: Python :: 3.7",
32        "Programming Language :: Python :: 3.8",
33        "Programming Language :: Python :: 3.9",
34        "Topic :: Utilities",
35    ],
36    keywords=["django", "email", "contact-form"],
37    python_requires=">=3.6",
38    install_requires=["Django>=2.2,!=3.0.*"],
39    extras_require={"akismet": ["akismet"]},
40)
41