-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
60 lines (53 loc) · 1.6 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
[project]
name = "bitsrun"
version = "3.7.1"
description = "A headless login / logout script for 10.0.0.55"
authors = [{ name = "spencerwooo", email = "[email protected]" }]
dependencies = [
"httpx>=0.24.0",
"rich>=13.3.5",
"humanize>=4.5.0",
"click>=8.1.3",
"platformdirs>=2.6.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "WTFPL" }
keywords = ["bit", "srun", "srun-login", "srun-client", "beijing-institute-of-technology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Education",
"Topic :: Internet",
]
[project.urls]
homepage = "https://github.com/BITNP/bitsrun"
[project.scripts]
bitsrun = "bitsrun.cli:cli"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "N", "B", "SIM"]
[tool.ruff.format]
# Use single quotes rather than double quotes.
quote-style = "single"
[tool.mypy]
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
# disallow_untyped_defs = true
# warn_return_any = true