-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 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
39
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rock"
version = "0.0.5"
description = "RObotrade Crypto Kit"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "nomnoms12", email = "[email protected]" },
{ name = "khanbekov", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"websockets ~= 10.3"
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-asyncio",
"coverage",
]
[project.urls]
"Homepage" = "https://github.com/RoboTradeCode/rock"
"Bug Tracker" = "https://github.com/RoboTradeCode/rock/issues"