-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 921 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
from setuptools import setup, find_packages
setup(
name='elastic-benchmark',
version='0.0.1',
description='Parses a given input and inserts into ElasticSearch.',
author='Stephen Lowrie',
author_email='[email protected]',
url='https://github.com/osic/elastic-benchmark',
packages=['elastic_benchmark'],
install_requires=open('requirements.txt').read(),
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: Other/Proprietary License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
entry_points={
'console_scripts': [
'elastic-benchmark = elastic_benchmark.main:entry_point',
'elastic-upgrade = elastic_benchmark.upgrade:entry_point']})