-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 879 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
from setuptools import setup
setup(
name='django_cloudfront',
version='0.1.1',
description='cloudfront private content signing for django',
url='https://github.com/tzangms/django_cloudfront',
author='tzangms',
author_email='[email protected]',
keywords='django cloudfront',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
license='MIT',
packages=['cloudfront'],
install_requires=[
'pycrypto==2.6',
],
zip_safe=False
)