-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·60 lines (48 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="bent",
version="0.0.67",
description = "BENT: Biomedical Entity Annotator",
long_description=open("README.rst").read(),
author = "Pedro Ruas",
author_email = "pedrosimruas@gmail.com",
packages = find_packages(),
python_requires=">=3.7, <=3.10.13",
license = open("LICENSE.txt").read(),
url="https://github.com/lasigeBioTM/bent",
keywords=["text mining", "natural language processing", "entity extraction",
"named entity recognition", "named entity linking", "normalization",
"disambiguation", "NER", "NEL", "information extraction"],
install_requires=open("bent/requirements.txt").readlines(),
include_package_data=True,
entry_points={
"console_scripts": [
"bent_setup = bent.setup_package_wrapper:main",
] },
classifiers = [
# How mature is this project?
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
# Topics
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Programming Language :: Unix Shell",
"Programming Language :: Java",
# OS
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License"
]
)