forked from jong/testing.elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 905 Bytes
/
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
from setuptools import setup
setup(
name='testing.elasticsearch',
packages=['testing'],
package_dir={'': 'src'},
version=open('VERSION.txt').read().strip(),
author='Jon Gartman',
author_email='[email protected]',
url='https://github.com/jong/testing.elasticsearch',
keywords=['testing', 'elasticsearch'],
license='MIT',
description='Automatically sets up an elasticsearch instance in a temporary directory, and destroys it after testing',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=open('README.rst').read(),
install_requires=[
"requests>=2.6.0",
],
)