-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
33 lines (30 loc) · 921 Bytes
/
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
[project]
name = "PyCronofy"
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"requests>=2.20.0",
"pytz>=2013.7",
]
description = 'Python library for Cronofy'
authors = [
{name = "VenueBook", email = "[email protected]"},
{name = "Cronofy", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/cronofy/pycronofy"
"API Docs" = "https://docs.cronofy.com/developers/"
[tool.setuptools.dynamic]
version = {attr = "pycronofy.__version__"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"