Skip to content

Commit

Permalink
pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Mangum committed Nov 12, 2019
1 parent 18f8b7d commit e677fa1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[metadata]
description-file = README.md

[aliases]
test = pytest
lint = flake8
Expand Down
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,27 @@

setup(
name='bamboo',
packages=['bamboo'],
version='0.2.5',
license='MIT',
description='DataFrame interface for ElasticSearch',
author='Aaron Mangum',
author_email='aaron.mangum@juvo.com',
url='https://github.com/juvoinc/bamboo',
packages=['bamboo'],
download_url='https://github.com/juvoinc/bamboo/archive/0.2.5.tar.gz',
keywords=['elasticsearch', 'dataframe', 'pandas'],
python_requires='>=2.7',
setup_requires=["pytest-runner", "flake8"],
tests_require=["pytest", "pytest-cov", "pandas"],
install_requires=[
'elasticsearch>=6.0.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
)

0 comments on commit e677fa1

Please sign in to comment.