-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 1020 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
[tool.poetry]
readme = "README.md"
homepage = "https://github.com/UBC-MDS/pypuck"
repository = "https://github.com/UBC-MDS/pypuck"
documentation = 'https://pypuck.readthedocs.io'
name = "pypuck"
version = "1.1.3"
description = "Functions to access the publicly available but uncodumented NHL.com API"
authors = ["Jarvis Nederlof <[email protected]>", "Xugang Zhong <[email protected]>", "Polina Romanchenko <[email protected]>", "Manish Joshi <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
pandas = "^1.0.1"
requests = "^2.23.0"
altair = "^3.0.1"
[tool.poetry.dev-dependencies]
sphinx = "^2.4.3"
sphinxcontrib-napoleon = "^0.7"
pytest-cov = "^2.8.1"
pytest = "^5.3.5"
flake8 = "^3.7.9"
python-semantic-release = "^4.10.0"
[tool.semantic_release]
version_variable = "pypuck/__init__.py:__version__"
version_source = "commit"
upload_to_pypi = "true"
patch_without_tag = "true"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"