-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.38 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
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
VERSION = (0, 0, 5)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
long_description = 'Should have been loaded from README.md.'
with open(join(dirname(__file__), 'README.rst')) as f:
long_description = f.read().strip()
install_requires = [
'django>=1.8',
'elasticsearch-dsl>=5.3.0',
'elasticsearch>=5.4.0',
'python-dateutil',
'six',
]
setup(
name="django_es",
description="A Django elasticsearch wrapper for model and helper using elasticsearch-dsl-py high level library.",
license="BSD-3",
url="https://github.com/GuillaumeCisco/django-es",
long_description=long_description,
version=__versionstr__,
author="Guillaume Cisco",
author_email="[email protected]",
packages=find_packages(
where='.',
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Framework :: Django"
],
keywords="elasticsearch haystack django bungiesearch django_es",
install_requires=install_requires,
dependency_links=['https://github.com/elasticsearch/elasticsearch-dsl-py#egg=elasticsearch-dsl-py'],
)