-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
27 lines (27 loc) · 1.22 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
from distutils.core import setup
setup(
name = 'espandas',
packages = ['espandas'],
version = '1.0.4',
description = 'Insert and Extract Pandas DataFrames with ElasticSearch',
author = 'David Shaub',
author_email = '[email protected]',
url = 'https://github.com/dashaub/espandas',
download_url = 'https://github.com/dashaub/espandas/archive/1.0.4.tar.gz',
keywords = ['ElasticSearch', 'pandas', 'nosql'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database',
'Topic :: Scientific/Engineering'],
)