-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
82 lines (74 loc) · 1.91 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
[tool]
[tool.poetry]
name = "PyDV"
version = "3.6.1"
description = "PyDV: Python Data Visualizer"
license = "BSD"
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
homepage = "https://github.com/LLNL/PyDV"
documentation = "https://pydv.readthedocs.io/en/latest/"
authors = [
"Sarah El-Jurf <eljurf1@llnl.gov>", "Sarah El-Jurf",
"Jorge Moreno <moreno45@llnl.gov", "Jorge Moreno",
"Ephraim Rusu <rusu1@llnl.gov>", "Ephraim Rusu",
]
maintainers = [
"Sarah El-Jurf <eljurf1@llnl.gov>", "Sarah El-Jurf",
"Jorge Moreno <moreno45@llnl.gov", "Jorge Moreno",
]
readme = "README.md"
packages = [
{include = 'pydv'},
]
include = ['img/*']
[tool.poetry.dependencies]
python = ">=3.6"
matplotlib = "*"
numpy = "*"
scikit-learn = "*"
scipy = "*"
PySide2 = "*"
PyQt5 = "*"
[tool.poetry.dev-dependencies]
sphinx_rtd_theme = "*"
sphinx = "*"
pytest = "*"
sphinx-autoapi = "*"
six = "*"
flake8 = "*"
scikit-image = "*"
[tool.poetry.plugins."console_scripts"]
'pdv' = 'pydv.pdv:main'
[build-system]
requires = ["poetry-core>=1.0.8", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/LLNL/PyDV/issues"
"Discussions" = "https://github.com/LLNL/PyDV/discussions"
[tool.black]
line-length = 79
[tool.bumpver]
current_version = "3.6.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"README.md" = [
"{version}",
"{pep440_version}",
]