-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 796 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 796 Bytes
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
from setuptools import setup, find_packages
version = '1.0.1'
setup(
name='django-field-cryptography',
packages=find_packages(),
include_package_data=True,
version=version,
license='BSD',
description='An encrypted field for Django.',
install_requires=('cryptography>=0.6,<0.7',),
classifiers=(
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Database',
),
author='Incuna Ltd',
author_email='admin@incuna.com',
url='https://github.com/incuna/django-field-cryptography',
)