-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (57 loc) · 1.64 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "civiq6"
description = "Package for integrating VimbaPython and Qt6"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["Qt", "GUI", "Camera", "Allied Vision", "Vimba"]
authors = [
{name = "Jisoo Song", email = "jeesoo9595@snu.ac.kr"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
]
dynamic = [
"version",
]
[project.urls]
repository = "https://github.com/JSS95/civiq6"
[project.optional-dependencies]
doc = [
"numpydoc",
"sphinx",
"sphinx-tabs",
"sphinx_rtd_theme",
"imageio[ffmpeg]",
]
dev = [
"flake8",
"black",
"mypy",
"civiq6[doc]",
]
[tool.setuptools.dynamic]
version = {attr = "civiq6.version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]