-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·35 lines (30 loc) · 991 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
34
35
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "crypto-ws-api"
authors = [{name = "Jerry Fedorenko", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers=["Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS"]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"shortuuid~=1.0.13",
"platformdirs==3.11.0",
"toml~=0.10.2",
"websockets==14.2",
"ujson~=5.10.0"
]
[tool.flit.module]
name = "crypto_ws_api"
[project.urls]
Source = "https://github.com/DogsTailFarmer/crypto-ws-api"
[project.scripts]
crypto_ws_api_init = "crypto_ws_api.__init__:init"
crypto_ws_api_demo = "crypto_ws_api.demo:main"