-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·30 lines (28 loc) · 1.09 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="NFDI",
version='0.1.1',
author="Renat Shigapov",
license="MIT",
description="Basic info about NFDI consortia. Named entity linking for them. Support for Wikidata WikiProject NFDI.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UB-Mannheim/NFDI",
install_requires=['requests>=2.24.0', 'spacy>=3.1.3', ],
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.7'
)