forked from laurentguilbert/django-trampoline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.24 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
"""
Setup for trampoline.
"""
import sys
from setuptools import find_packages
from setuptools import setup
exec(open('trampoline/version.py').read())
install_requires = [
'celery',
'elasticsearch_dsl>=2.0.0,<3.0.0',
'tqdm',
'six',
]
if sys.version_info.major == 2:
install_requires.append('futures')
setup(
name='django-trampoline',
version=__version__, # noqa
keywords='django, elasticsearch',
author='Laurent Guilbert',
author_email='[email protected]',
url='https://github.com/laurentguilbert/django-trampoline',
description="No-frills Elasticsearch's wrapper for your Django project.",
license='MIT License',
classifiers=(
'Framework :: Django',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
),
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
entry_points={
'nose.plugins': (
'trampoline_setup = nose_plugins:TrampolineSetup',
)
},
)