-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.47 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from setuptools import setup, find_packages
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, "README.md"), "r") as fh:
long_description = fh.read()
setup(
name="wikimeasurements",
version="0.0.0",
license="",
author="Jan Göpfert",
author_email="[email protected]",
description="Create NLP datasets for quantity span identification and measurement context extraction from Wikipedia and Wikidata",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
include_package_data=True,
packages=find_packages(where="src"),
package_dir={"": "src"},
# setup_requires=["setuptools-git"], # what is this for?
python_requires=">=3.8",
classifiers=[
# check http://pypi.python.org/pypi?%3Aaction=list_classifiers
# License :: OSI Approved :: MIT License
"Development Status :: 2 - Pre-Alpha"
"Programming Language :: Python :: 3 :: Only"
"Operating System :: Unix"
"Natural Language :: English"
"Intended Audience :: Science/Research"
"Intended Audience :: Information Technology"
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
],
keywords=[
"NLP",
"Distant Supervision",
"Wikipedia",
"Wikidata",
"Quantities",
"Measurements",
"Information Extraction",
],
)