-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.08 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ns-extract"
authors = [{name = "James Kent", email = "jamesdkent21@gmail.com"}]
description = "A package for extracting text features from the NeuroStore database."
readme = "README.md"
keywords = ["neurostore", "neurosynth", "neuroimaging", "meta-analysis"]
license = {text = "BSD 3-Clause License"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
# dependencies = ["pandas"]
[project.optional-dependencies]
participant_demographics = [
"pandas",
"numpy",
"pydantic",
"publang @ git+https://github.com/adelavega/publang.git",
"openai"
]
umls_disease = [
"pandas",
"numpy",
"labelrepo",
"spacy",
"scispacy",
"tqdm",
]
word_count = [
"pandas",
]
tests = [
"pytest",
"pytest-recording",
"vcrpy",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "ns_extract/_version.py"
[tool.hatch.metadata]
allow-direct-references = true