forked from joshuamsmith/ConnectPyse
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 891 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "connectpyse"
version = "0.8.1"
description = "A ConnectWise API tool for the rest of us."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Joshua M Smith (original)", email = "[email protected]"},
{name = "Mark Ciecior (forked)", email = "[email protected]"},
{name = "@wesgann"}
]
keywords = ["connectwise", "rest", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
]
requires-python = ">=3.5"
dependencies = [
"requests",
]
[project.urls]
Homepage = "https://github.com/markciecior/ConnectPyse"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["connectpyse*"]