-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 982 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import django_kms
setup(
name='django-kms-field',
version=django_kms.__version__,
description='Add Amazon KMS encrypted database fields',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Shaun Kruger',
author_email='[email protected]',
url = 'https://github.com/skruger/django-kms-field',
packages= find_packages(exclude=('tests*',)),
license='The MIT License: http://www.opensource.org/licenses/mit-license.php',
platforms='all',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=[
"boto3>=1.13",
],
include_package_data=True,
zip_safe=False,
)