-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (34 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "falconlib"
version = "0.0.49"
authors = [
{name="Thomas J. Daley, Esq.", email="tjd@powerdaley.com"},
]
description = "Client-side library for accessing the falconapi restful service."
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["falconapi", "falconlib"]
dependencies = [
"requests"
]
[project.urls]
"Homepage" = "https://github.com/tjdaley/falconlib"
"Bug Tracker" = "https://github.com/tjdaley/falconlib/issues"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial",
]