-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 825 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "pyrus/version.py"
[project]
name = "pyrus-api"
dynamic = ["version"]
dependencies = [
"requests",
"jsonpickle",
]
[tool.hatch.build.targets.wheel]
include = ["pyrus"]
requires-python = ">=3.4"
authors = [
{name = "Pyrus", email = "contact@pyrus.com"},
]
maintainers = [
{name = "Pyrus", email = "contact@pyrus.com"}
]
description = "Python Pyrus API client"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.txt"}
keywords = ["pyrus api"]
classifiers = [
"Programming Language :: Python"
]
[project.urls]
Repository = "https://github.com/simplygoodsoftware/pyrusapi-python"
Changelog = "https://github.com/simplygoodsoftware/pyrusapi-python/blob/master/CHANGELOG.md"