-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (42 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
55 lines (42 loc) · 1.21 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools>=80']
[project]
requires-python = '>=3.8'
dynamic = ['version', 'readme']
name = 'expfit'
description = 'TODO'
authors = [
{name='Michael Clerx', email='michael.clerx@nottingham.ac.uk'}
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
]
dependencies = [
'numpy>=1.18', # Dec 22, 2019. First version to support Python 3.8
]
[tool.setuptools.dynamic]
version = {attr = 'expfit.__version__'}
readme = { file = 'README.md', content-type = 'text/markdown'}
[project.optional-dependencies]
dev = [
'coverage', # For coverage testing
'codecov>=2.1.3', # To upload coverage reports
'flake8>=3', # For code style checking
'mypy>=1', # For type hint checking
'matplotlib>=3.4',
]
[project.urls]
Homepage = 'https://github.com/myokit/expfit'
Source = 'https://github.com/myokit/expfit'
#[tools.setuptools.package-data]
#include_package_data = true
[tool.setuptools.packages.find]
include = ['expfit']
[tool.mypy]
modules = ['expfit']
[tool.coverage.run]
source = ['expfit']
omit = []