2021-09-30 14:27:19 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='django-fernet-encrypted-fields',
|
|
|
|
|
description=(
|
|
|
|
|
'This is inspired by django-encrypted-fields.'
|
|
|
|
|
),
|
2021-09-30 23:04:22 +00:00
|
|
|
long_description=open('README.md').read(),
|
|
|
|
|
long_description_content_type='text/markdown',
|
2021-09-30 14:27:19 +00:00
|
|
|
url='http://github.com/frgmt/django-fernet-encrypted-fields/',
|
|
|
|
|
license='MIT',
|
|
|
|
|
author='fragment.co.jp',
|
|
|
|
|
author_email='info@fragment.co.jp',
|
|
|
|
|
packages=['encrypted_fields'],
|
2021-09-30 23:04:22 +00:00
|
|
|
version='0.0.2',
|
2021-09-30 14:27:19 +00:00
|
|
|
install_requires=[
|
|
|
|
|
'Django>=2.2',
|
|
|
|
|
'cryptography>=35.0.0',
|
|
|
|
|
],
|
|
|
|
|
)
|