forked from grobidOrg/grobid-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 662 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='grobid_client_python',
version='0.0.7',
description='Simple python client for GROBID REST services',
author='kermitt2',
long_description=open("Readme.md", encoding='utf-8').read(),
long_description_content_type="text/markdown",
url="https://github.com/kermitt2/grobid_client_python",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=['requests'],
entry_points={
'console_scripts': ['grobid_client=grobid_client.grobid_client:main']
},
license='LICENSE',
)