2011-05-01 19:21:37 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""python setup.py install"""
|
|
|
|
|
|
|
|
# Copyright (c) 2011 Paul Makepeace, Real Programmers. All rights reserved.
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
import os
|
|
|
|
from setuptools import setup
|
2011-05-01 19:39:41 +02:00
|
|
|
from setuptools import find_packages
|
2011-05-01 19:21:37 +02:00
|
|
|
|
2013-10-09 20:04:24 +02:00
|
|
|
|
|
|
|
def read(filename):
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
2011-05-01 19:21:37 +02:00
|
|
|
|
2019-07-29 22:36:31 +02:00
|
|
|
setup(name='openrefine-client',
|
2019-08-22 03:18:36 +02:00
|
|
|
version='0.3.8',
|
2013-10-10 13:41:10 +02:00
|
|
|
description=('The OpenRefine Python Client Library provides an '
|
2019-07-29 22:36:31 +02:00
|
|
|
'interface to communicating with an OpenRefine server. '
|
|
|
|
'This fork extends the command line interface (CLI).'),
|
|
|
|
long_description=read('README.md'),
|
2019-08-04 02:21:16 +02:00
|
|
|
long_description_content_type='text/markdown',
|
2019-07-29 22:36:31 +02:00
|
|
|
author='Felix Lohmeier',
|
|
|
|
author_email='felix.lohmeier@opencultureconsulting.com',
|
|
|
|
url='https://github.com/opencultureconsulting/openrefine-client',
|
2011-05-01 19:39:41 +02:00
|
|
|
packages=find_packages(exclude=['tests']),
|
2019-12-27 16:07:17 +01:00
|
|
|
install_requires=['requests'],
|
|
|
|
python_requires='>=3.0,<4',
|
2019-08-04 02:21:16 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [ 'openrefine-client = google.refine.__main__:main' ]
|
|
|
|
},
|
2011-05-01 19:21:37 +02:00
|
|
|
platforms=['Any'],
|
2019-08-04 02:21:16 +02:00
|
|
|
keywords='openrefine client batch processing docker etl code4lib',
|
2011-05-01 19:21:37 +02:00
|
|
|
classifiers = [
|
2019-08-04 02:21:16 +02:00
|
|
|
'Development Status :: 4 - Beta',
|
2013-10-09 20:04:24 +02:00
|
|
|
'Intended Audience :: Developers',
|
2019-08-04 02:21:16 +02:00
|
|
|
'Intended Audience :: System Administrators',
|
2013-10-09 20:04:24 +02:00
|
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
2019-08-04 02:21:16 +02:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
2013-10-09 20:04:24 +02:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
2019-08-04 02:21:16 +02:00
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-10-09 20:04:24 +02:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: Text Processing',
|
2011-05-01 19:21:37 +02:00
|
|
|
],
|
|
|
|
test_suite='tests',
|
|
|
|
)
|