-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 1.05 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
28
29
"""
A commandline command (Python3 program) that retrieves EntityFacts sheets from a given CSV with GND identifiers and returns them as line-delimited JSON records.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='entityfactssheetsharvester',
version='0.0.1',
description='a commandline command (Python3 program) that retrieves EntityFacts sheets from a given CSV with GND identifiers and returns them as line-delimited JSON records',
url='https://github.com/slub/entityfactssheetsharvester',
author='Bo Ferri',
author_email='zazi@smiy.org',
license="Apache 2.0",
packages=[
'entityfactssheetsharvester',
],
package_dir={'entityfactssheetsharvester': 'entityfactssheetsharvester'},
install_requires=[
'argparse>=1.4.0',
'requests>=2.22.0',
'rx>=3.0.1'
],
entry_points={
"console_scripts": ["entityfactssheetsharvester=entityfactssheetsharvester.entityfactssheetsharvester:run"]
}
)