forked from algolia/algoliasearch-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (58 loc) · 2.12 KB
/
setup.py
File metadata and controls
66 lines (58 loc) · 2.12 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# 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(path_readme, 'rst')
except (IOError, ImportError):
with open(path_readme) as readme:
README = readme.read()
VERSION = None
path_version = os.path.join(os.path.dirname(__file__),
'algoliasearch/version.py')
if sys.version_info[0] == 3:
exec(open(path_version).read())
else:
execfile(path_version)
setup(
name='algoliasearch',
version=VERSION,
license='MIT License',
packages=['algoliasearch'],
packages_data={'algoliasearch': ['resources/*.crt']},
include_package_data=True,
zip_safe=False, # Because of the certificate
install_requires=['requests[security] >= 2.9.1'],
description='Algolia Search API Client for Python',
long_description=README,
author='Algolia Team',
author_email='support@algolia.com',
url='https://github.com/algolia/algoliasearch-client-python',
keywords=['algolia', 'pyalgolia', 'search', 'backend', 'hosted', 'cloud',
'full-text search', 'faceted search'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Development Status :: 5 - Production/Stable',
]
)