-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.06 KB
/
pyproject.toml
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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "bioc"
version = "2.1"
description = "bioc - Processing BioC, Brat, and PubTator with Python."
readme = "README.md"
keywords = [ "bioc", "brat", "pubtator",]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python :: 3",]
dynamic = [ "dependencies",]
[[project.authors]]
name = "Yifan Peng"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/bionlplab/bioc"
[project.scripts]
bioc-split = "bioc.cli.split_bioc:main"
brat2bioc = "bioc.cli.brat2bioc:main"
[tool.setuptools.dynamic.dependencies]
file = [ "requirements.txt",]
[tool.setuptools.packages.find]
where = [ "src",]
exclude = [ "tests*",]