-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "autotraders"
authors = [
{ name = "Ashwin Naren", email = "[email protected]" },
{ name = "Rafael Sillero", email = "[email protected]" },
]
description = "A powerful spacetraders API"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyrate-limiter>3.0.0",
"pydantic>=2.0.0",
"httpx[http2]>=0.19.0"
]
dynamic = ["version"]
[tool.setuptools.packages.find]
include = ["autotraders*"]
exclude = ["source*", "tests*", "venv*"]
[tool.setuptools.dynamic]
version = { attr = "autotraders.version.__version__" }
[project.urls]
"Homepage" = "https://comsictraders.github.io/autotraders/"
"Repository" = "https://github.com/comsictraders/autotraders.git"
"Changelog" = "https://github.com/comsictraders/autotraders/blob/master/CHANGELOG.md"
"Documentation" = "https://comsictraders.github.io/autotraders/"
"Bug Tracker" = "https://github.com/comsictraders/autotraders/issues"