-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (37 loc) · 1.1 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
[tool.poetry]
name = "neurometa"
version = "1.3.4"
description = "Package for generating metadata related to neuroscience"
authors = ["Can H. Tartanoglu <[email protected]>"]
maintainers = ["Can H. Tartanoglu <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/memorycircuits/neurometa"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
packages = [{include = "neurometa"}]
[tool.poetry.dependencies]
python = "^3.9"
pandas = { version = "*", extras = [ "compression", "parquet", "excel" ] }
deepdiff = { version = "^7.0.1", optional = false }
Wikipedia-API = { version = "^0.5.4", optional = false }
[tool.poetry.extras]
gen = ["Wikipedia-API", "deepdiff", "pandas"]
[tool.poetry.group.format.dependencies]
ruff = "*"
black = "*"
isort = "*"
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"