-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·53 lines (47 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
executable file
·53 lines (47 loc) · 1.32 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "simplyplural-cli"
version = "0.1.1"
description = "Command-line interface for Simply Plural"
readme = "README.md"
license = "LGPL-2.1-only"
requires-python = ">=3.8"
authors = [
{ name = "Site Reliability Enby" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"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 :: Utilities",
]
dependencies = [
"requests>=2.25.0",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-cov>=4.0",
]
[project.urls]
Homepage = "https://github.com/SiteRelEnby/simplyplural-cli"
Repository = "https://github.com/SiteRelEnby/simplyplural-cli"
Issues = "https://github.com/SiteRelEnby/simplyplural-cli/issues"
[project.scripts]
sp = "simplyplural.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"