-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
45 lines (41 loc) · 1.26 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
40
41
42
43
44
45
[tool.poetry]
name = "draft_kings"
version = "3.1.0"
description = "A client to access data on draftkings.com"
authors = ["Jae Bradley <[email protected]>"]
maintainers = ["Jae Bradley <[email protected]>"]
license = "MIT"
keywords = ["Daily Fantasy Sports", "DraftKings"]
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"]
repository = "https://github.com/jaebradley/draftkings_client"
homepage = "https://jaebradley.github.io/draftkings_client"
documentation= "https://jaebradley.github.io/draftkings_client"
readme = "README.md"
exclude = [
"tests",
"dist",
"docs",
"mkdocs.yml",
".github",
".pytest_cache",
".coveragerc",
".pylintrc",
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.20.0"
marshmallow = "^3.9.1"
marshmallow-enum = "^1.5.1"
[tool.poetry.dev-dependencies]
coverage = "^5.3"
mkdocs = "^1.1.2"
mkdocs-material = "^5.3.3"
pymdown-extensions = "^7.1"
pytest = "^6.1.2"
pylint = "^2.12.2"
[tool.poetry.urls]
issues = "https://github.com/jaebradley/draftkings_client/issues"
pull_requests = "https://github.com/jaebradley/draftkings_client/pull_requests"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"