-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (79 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PynamicGain"
version = "0.0.9"
requires-python = ">=3.11"
dependencies = [
"pandas",
"matplotlib",
"scipy",
"numpy",
"tomli",
"numba",
"pyyaml",
"pyabf",
"tomli-w",
"tqdm",
"docopt",
]
authors = [
{ name = "Friedrich Schwarz", email = "[email protected]" },
{ name = "Andreas Neef"},
{ name = "Stefan Pommer"},
]
maintainers = [
{ name="Friedrich Schwarz", email="[email protected]" },
]
readme = "README.md"
license = {file = "LICENSE.txt"}
description = "Dynamic Gain input generation for distributed PClamp setups."
keywords = [
"neuroscience",
"electrophysiology",
"patch clamp",
"scientific software",
"data analysis",
"dynamic gain",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
[project.scripts]
pydg_new_setup = "pynamicgain.new_setup:initiate_new_setup"
pydg_generate = "pynamicgain.__main__:generate"
pydg_generate_analyse = "pynamicgain.__main__:generate_analyse"
pydg_analyse = "pynamicgain.__main__:analyse"
pydg_help = "pynamicgain.__main__:help"
[project.urls]
Repository = "https://github.com/fschwar4/pynamicgain"
Documentation = "https://fschwar4.github.io/pynamicgain/"
Homepage = "https://fschwar4.github.io/pynamicgain/"
"Bug Tracker" = "https://github.com/fschwar4/pynamicgain/issues"
Changelog = "https://github.com/fschwar4/pynamicgain/blob/main/CHANGELOG.md"
[project.optional-dependencies]
docs = [
"myst-parser",
"pydata-sphinx-theme",
"pylint",
"sphinx",
"sphinx-autodoc-typehints",
]
interactive = [
"jupyterlab",
"ipykernel",
]
[tool.setuptools]
packages = [
"pynamicgain",
"pynamicgain.default_configs",
]
include-package-data = true
[tool.setuptools.package-data]
"pynamicgain.default_configs" = [
"default_configs.toml",
"matploltlib.mplstyle",
]