-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (55 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfreshdesk"
version = "0.1.11"
description = "Python client for Freshdesk API."
requires-python = ">=3.6"
license = { file = "LICENSE" }
authors = [
{ name = "Kyle L. Davis", email = "[email protected]" },
]
maintainers = [
{ name = "Kyle L. Davis", email = "[email protected]" },
]
readme = "README.md"
keywords = ["freshdesk", "api", "client"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests",
"python-dateutil",
]
[project.optional-dependencies]
dev = [
# CI Tool
"pre-commit",
# For Builing
"setuptools",
"build",
# For Publishing
"twine",
]
[project.urls]
Homepage = "https://github.com/AceofSpades5757/pyfreshdesk"
Documentation = "https://github.com/AceofSpades5757/pyfreshdesk/blob/main/README.md"
Repository = "https://github.com/AceofSpades5757/pyfreshdesk"
Issues = "https://github.com/AceofSpades5757/pyfreshdesk/issues"
[tool.setuptools.packages.find]
where = ["src"]