-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (51 loc) · 1.77 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
import sys
with open('version', 'r') as f:
version = f.read()
version = version.strip()
setup(name='djenga',
version=version,
description="Useful building blocks for Django.",
long_description="""\
Useful building blocks for Django.""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.9',
'License :: OSI Approved :: BSD License',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
# cmdclass={'bdist_wheel': bdist_wheel},
keywords='django python',
author='Preetam Shingavi',
author_email='[email protected]',
url='https://github.com/2ps/djenga',
license='BSD',
packages=find_packages(exclude=['djenga_tests', 'tasks', 'tests']),
include_package_data=False,
zip_safe=True,
install_requires=[
'six>=1.10.0',
'Django>=1.9',
'cssutils>=1.0',
'beautifulsoup4>=4.3.2',
'pynliner>=0.8.0',
'pycryptodome>=3.6.6',
'pytz',
'python-dateutil',
'pyyaml',
'django-redis-cache',
'celery>=4.1.0',
'boto3',
'requests>=2.19',
] + ([ 'psutil' ] if 'cygwin' in sys.platform else []),
entry_points={
'console_scripts': [
'kms_wrap=djenga.encryption.kms_wrap:main',
],
})