-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.56 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dosview"
#version = "0.1.18"
description = "A .dos file viewer"
readme = "README.md"
license = { file="LICENSE" }
authors = [
{name = "Roman Dvorak", email = "[email protected]"}
]
maintainers = [
{name = "Roman Dvorak", email = "[email protected]"}
]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
dependencies = [
"setuptools",
"matplotlib",
"numpy",
"pandas",
"pyqt5",
"pyqtgraph",
"ft260",
]
[tool.setuptools.dynamic]
version = {attr="dosview.version.__version__"}
#[tool.setuptools.package-data]
#'/usr/local/share/applications' = ['dosview.desktop']
#'/usr/local/share/icons' = ['media/icon_ust.png']
[project.scripts]
dosview = "dosview:main"
[project.urls]
homepage = "https://docs.dos.ust.cz/dosview/"
repository = "https://github.com/UniversalScientificTechnologies/dosview/"
github = "https://github.com/UniversalScientificTechnologies/dosview/"
issues = "https://github.com/UniversalScientificTechnologies/dosview/issues"
doccumentation = "https://docs.dos.ust.cz/dosview/"