forked from erikvw/django-crypto-fields
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.49 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.49 KB
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
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as readme:
README = readme.read()
with open(os.path.join(os.path.dirname(__file__), "VERSION")) as f:
VERSION = f.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-crypto-fields",
version=VERSION,
author="Erik van Widenfelt",
author_email="ew2789@gmail.com",
packages=find_packages(),
include_package_data=True,
url="http://github.com/erikvw/django-crypto-fields",
license="GPL license, see LICENSE",
description="Add encrypted field classes and more to your Django models.",
long_description=README,
zip_safe=False,
keywords="django fields encryption security",
install_requires=["pycryptodome", "django_audit_fields", "edc-utils"],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Security :: Cryptography",
],
python_requires=">=3.7",
)