-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 806 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
30
31
32
[tool.poetry]
name = "pureskillgg-makenew-pyskill"
version = "0.5.0"
description = "Package skeleton for a PureSkill.gg PySkill."
authors = ["PureSkill.gg <contact@pureskill.gg>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/pureskillgg/makenew-pyskill"
repository = "https://github.com/pureskillgg/makenew-pyskill"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.22.3"
pandas = "^1.4.1"
python-dotenv = "^0.20.0"
requests = "^2.27.1"
pureskillgg-dsdk = "^1.2.0"
pureskillgg-csgo-dsdk = "^1.1.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pylint = "^2.4.0"
pytest = "^7.1.1"
pytest-cov = "^4.0.0"
pytest-runner = "^6.0.0"
pytest-watch = "^4.2.0"
matplotlib = "^3.5.1"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry>=1.2"]
build-backend = "poetry.masonry.api"