-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (36 loc) · 1.18 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'HISTORY.rst')).read()
requires = [
'pyramid',
'rawes>=0.5.4'
]
setup(
name='pyramid_rawes',
version='0.5.1',
license='MIT',
description='Rawes bindings for pyramid',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Framework :: Pyramid',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
],
author='Koen Van Daele',
author_email='[email protected]',
url='https://github.com/koenedaele/pyramid_rawes',
keywords='pyramid elastic search rawes',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires = requires,
test_suite='pyramid_rawes',
)