-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (60 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
73 lines (60 loc) · 1.64 KB
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
[build-system]
requires = [
'setuptools>=61',
'wheel',
'setuptools_scm[toml]>=8.0',
]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
local_scheme = 'dirty-tag'
write_to = 'pcpostprocess/_version.py'
[project]
requires-python = '>=3.10'
dynamic = ['version']
readme = { file = 'README.md', content-type = 'text/markdown' }
name = 'pcpostprocess'
description = 'Post-process patch clamp recordings with the staircase protocol'
authors = [
{name='Frankie Patten-Elliot'},
{name='Joseph Shuttleworth', email='joey.shuttleworth@nottingham.ac.uk'},
{name='Chon Lok Lei'},
{name='Michael Clerx'}
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
]
dependencies = [
'scipy>=1.7',
'numpy>=1.21',
'matplotlib>=3.4',
'pandas>=1.3',
'seaborn>=0.12.2',
'jinja2>=3.1.0',
'syncropatch_export @ git+https://github.com/CardiacModelling/syncropatch_export.git'
]
[project.optional-dependencies]
test = [
'coverage', # For coverage testing
'codecov>=2.1.3', # To upload coverage reports
'flake8>=3', # For code style checking
]
[tools.setuptools.package-data]
include_package_data = true
[project.urls]
Homepage = 'https://github.com/CardiacModelling/pcpostprocess'
Source = 'https://github.com/CardiacModelling/pcpostprocess'
[project.scripts]
pcpostprocess = 'pcpostprocess.scripts.__main__:main'
[tool.setuptools.packages.find]
include = [
'pcpostprocess',
]
[tool.coverage.run]
source = [
'pcpostprocess',
]
omit = [
'pcpostprocess/scripts/__main__.py',
]