-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.63 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
import sys
from shutil import rmtree
from setuptools import setup, find_packages
if sys.argv[:2] == ["setup.py", "bdist_wheel"]:
# Remove previous build dir when creating a wheel build, since if files
# have been removed from the project, they'll still be cached in the build
# dir and end up as part of the build, which is unexpected
try:
rmtree("build")
except:
pass
version = {}
with open("gnupg_mails/__init__.py") as fp:
exec(fp.read(), version)
setup(
name="django-gnupg-mails",
version=version['__version__'],
author="Jan Dittberner",
author_email="[email protected]",
description=(
"A Django reusable app providing the ability to send PGP/MIME signed "
"multipart emails."
),
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
url="https://github.com/jandd/django-gnupg-mails",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=["Django", "python-gnupg", "sphinx-me"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Django",
"Topic :: Communications :: Email",
"Topic :: Security :: Cryptography",
],
python_requires='>=3.5',
)