forked from medspacy/medspacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 831 Bytes
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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "medspacy"
dynamic = ["version","dependencies","readme"]
authors = [{name = "medSpaCy"}]
description = "Library for clinical NLP with spaCy."
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
#https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/requirements.txt"]}
version={file = "medspacy/VERSION"}
readme={file = ['README.md'], content-type = "text/markdown"}
[project.urls]
Source = "https://github.com/medspacy/medspacy"
[tool.setuptools]
include-package-data = true