-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 854 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bookmap"
version = "0.1.2"
description = "Python implementation of L1 API library"
readme = "../README.md"
requires-python = ">=3.6"
authors = [
{ name = "Mykyta Leonov", email = "mykytal@bookmap.com" },
{ name = "Rok Povsik", email = "rokp@bookmap.com" },
{ name = "Roman Pavlenko", email = "romanp@bookmap.com" },
]
maintainers = [
{ name = "Roman Pavlenko", email = "romanp@bookmap.com" },
]
keywords = ["bookmap", "trading", "api"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://bookmap.com"
Documentation = "https://github.com/BookmapAPI/python-api"
Source = "https://github.com/BookmapAPI/python-api"