-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.06 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="kg-enricher",
version='0.1.9',
author="Renat Shigapov",
license="MIT",
description="A Python library for enriching strings, entities and KGs using Wikibase knowledge graphs. "
"It's adapted for people, organizations and German geographic entities, both modern and historical.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UB-Mannheim/kg-enricher",
install_requires=['geopandas', 'shapely', 'requests', 'appengine-python-standard'],
packages=find_packages(),
package_data={'enricher': ['84.json', '85.json', '86.json', '87.json', '88.json', '89.json', '90.json', '91.json', '92.json']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)