-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.17 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
[project]
name = "ABR"
description = "Evoked potential analysis software"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
readme = "README.md"
authors = [
{name = "Brad Buran", email="[email protected]"},
{name = "Brad Buran", email="[email protected]"},
]
maintainers = [
{name = "Brad Buran", email="[email protected]"},
{name = "Brad Buran", email="[email protected]"},
]
dependencies = [
"atom",
"enaml[qt6-pyside]",
"numpy",
"scipy",
"pandas",
"matplotlib",
]
dynamic = ["version"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
[project.urls]
homepage = "https://github.com/bburan/abr"
documentation = "https://github.com/bburan/abr"
repository = "https://github.com/bburan/abr"
[project.scripts]
abr = "abr.main:main"
abr-gui = "abr.main:main_gui"
abr-batch = "abr.main:main_batch"
abr-compare = "abr.main:main_compare"
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "abr/version.py"
[tool.setuptools.packages.find]
exclude = ["packaging"]