-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 854 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
33
34
35
36
37
38
39
40
[tool.poetry]
name = "db-playmate"
version = "0.1.0"
description = "Client scripts for Databrary PLAY project."
authors = ["Shohan Hasan <shohan.hasan.x6@gmail.com>", "Jesse Lingeman <jmlingeman@gmail.com>"]
license = "GPL-3.0"
[tool.poetry.scripts]
playmate = "db_playmate:cli.main"
[tool.poetry.dependencies]
python = "^3.7"
boxsdk = "^2.6"
PyJWT = "^1.7"
toml = "^0.10.0"
requests = "^2.22"
keyring = "^19.2"
docutils = "^0.15.2"
flask = "^1.1.1"
furl = "^2.1"
pandas = "^0.25.3"
tqdm = "^4.41.1"
flowjs = "^0.1.1"
tornado = "^6.0.3"
google-api-python-client = "^1.7.11"
google-auth-httplib2 = "^0.0.3"
google-auth-oauthlib = "^0.4.1"
flask-wtf = "^0.14.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[pytest]
log_cli = true
log_cli_level = 0