This repository was archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
44 lines (40 loc) · 1.53 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
#!/usr/bin/env python
import os
import sys
current_directory = os.path.dirname(os.path.realpath(__file__))
sys.path.remove(current_directory)
sys.path.insert(0, os.path.join(current_directory, 'cozyindexer'))
from setuptools import setup, find_packages
from lib.version import VERSION
setup(name='cozy-indexer',
version=VERSION,
description='Little API that provides indexation and full-text search ' +
'features to the Cozy Cloud Platform.',
long_description=open('README.md').read(),
author='Cozy Cloud',
author_email='[email protected]',
url='https://github.com/cozy/cozy-data-indexer',
keywords=['cozy', 'indexer', 'whoosh'],
license='LGPL',
packages=find_packages(),
install_requires=['tornado',
'whoosh',
'python-dateutil'],
entry_points={'console_scripts': [
'cozy-indexer = cozyindexer.server:main'
]},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: ' +
'GNU Library or Lesser General Public License (LGPL)',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)