forked from bil-bas/django-encrypted-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (28 loc) · 843 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
import re
with open('encrypted_fields/__init__.py', 'r') as init_file:
version = re.search(
'^__version__ = [\'"]([^\'"]+)[\'"]',
init_file.read(),
re.MULTILINE,
).group(1)
setup(
name='django-encrypted-fields',
description=(
'This is a collection of Django Model Field classes '
'that are encrypted using Keyczar.'
),
url='https://github.com/nex-health/django-encrypted-fields/',
license='BSD',
author='Aron Jones',
author_email='aron.jones@gmail.com',
packages=['encrypted_fields'],
version=version,
install_requires=[
'Django>=1.4',
'python3-keyczar @ git+https://github.com/nex-health/python3-keyczar@main',
],
)