-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 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
37
38
[project]
name = "ftc_api"
description = "A python client to access the FIRST Tech Challenge API"
authors = [
{ name = "Ashwin Naren", email = "arihant2math@gmail.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
version = "0.4.0"
dependencies = [
"httpx[http2]", "python-dateutil", "attrs"
]
keywords = ["ftc"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
]
[project.optional-dependencies]
dev = [
"black", "sphinx", "furo"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["ftc_api*"]
exclude = ["source*", "tests*", "venv*", "custom_templates*"]
[project.urls]
"Homepage" = "https://arihant2math.github.io/ftc-api/"
"Repository" = "https://github.com/arihant2math/ftc-api.git"
"Documentation" = "https://arihant2math.github.io/ftc-api/"
"Bug Tracker" = "https://github.com/arihant2math/ftc-api/issues"