-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (39 loc) · 1.1 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
"""
Setup for rubber.
"""
import sys
from setuptools import find_packages
from setuptools import setup
exec(open('rubber/version.py').read())
install_requires = [
'elasticsearch',
'elasticsearch-dsl',
'celery',
'six',
'tqdm',
]
if sys.version_info.major == 2:
install_requires.append('futures')
setup(
name='django-rubber',
version=__version__, # noqa
keywords='django, elasticsearch',
author='Laurent Guilbert',
author_email='laurent@guilbert.me',
url='https://github.com/liberation/django-rubber',
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,
)