-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
54 lines (46 loc) · 1.68 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
54
#!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools import find_packages
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
path_readme = os.path.join(os.path.dirname(__file__), 'README.md')
try:
import pypandoc
README = pypandoc.convert_file(path_readme, 'rst')
except (IOError, ImportError):
with open(path_readme) as readme:
README = readme.read()
path_version = os.path.join(os.path.dirname(__file__),
'algoliasearch_django/version.py')
if sys.version_info[0] == 3:
exec(open(path_version).read())
else:
execfile(path_version)
setup(
name='algoliasearch-django',
version=VERSION,
license='MIT License',
packages=find_packages(exclude=['tests']),
install_requires=['django>=1.7', 'algoliasearch>=3.0,<4.0'],
description='Algolia Search integration for Django',
long_description=README,
long_description_content_type='text/markdown',
author='Algolia Team',
author_email='[email protected]',
url='https://github.com/algolia/algoliasearch-django',
keywords=['algolia', 'pyalgolia', 'search', 'backend', 'hosted', 'cloud',
'full-text search', 'faceted search', 'django'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
]
)