-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 1.95 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
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = [
"setuptools",
"setuptools-scm[toml]>=4",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "hab_gui"
description = "GUI for user interaction to Hab."
authors = [{name = "Blur Studio", email = "opensource@blur.com"}]
license = {text = "LGPL-3.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.7"
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/blurstudio/hab-gui"
Source = "https://github.com/blurstudio/hab-gui"
Tracker = "https://github.com/blurstudio/hab-gui/issues"
[project.gui-scripts]
habw = "hab.cli:cli"
[tool.setuptools]
include-package-data = true
platforms = ["any"]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ["requirements-dev.txt"]}
json5 = {file = ["requirements-json5.txt"]}
[tool.setuptools.packages.find]
exclude = ["tests"]
namespaces = false
[tool.setuptools_scm]
write_to = "hab_gui/version.py"
version_scheme = "release-branch-semver"
[tool.flake8]
select = ["B", "C", "E", "F", "N", "W", "B9"]
extend-ignore = [
"E203",
"E501",
"E722",
"W503",
]
max-line-length = "88"
exclude = [
"*.egg-info",
"*.pyc",
".cache",
".eggs",
".git",
".tox",
"__pycache__",
"build",
"dist",
".venv"
]
[tool.isort]
profile = "black"