-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (51 loc) · 1.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "blender-asset-tracer"
version = "1.15"
homepage = 'https://developer.blender.org/project/profile/79/'
description = "BAT parses Blend files and produces dependency information. After installation run `bat --help`"
readme = "README.md"
authors = [
"Sybren A. Stüvel <[email protected]>",
"Campbell Barton",
"At Mind B.V. - Jeroen Bakker",
]
license = "GPL-2.0+"
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Utilities',
]
[tool.poetry.extras]
s3 = ["boto3"]
zstandard = ["zstandard"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.11"
# For S3 storage support:
boto3 = { version = "^1.9", optional = true }
# For Blender 3.0+ compressed file support.
zstandard = { version = "^0.15", optional = true }
[tool.poetry.dev-dependencies]
mypy = ">=0.942"
pytest = "^6.2"
pytest-cov = "^3.0.0"
# for the 'radon cc' command
radon = "^3.0"
# for converting profiler output to KCacheGrind input
"pyprof2calltree" = "*"
# For building documentation
sphinx = "^2.1"
sphinx-autobuild = "^0.7"
sphinx-rtd-theme = "^0.4"
responses = "^0.10"
pathlib2 = {version = "^2.3", python = "<3.6"}
tox = "^3.12"
types-requests = "^2.25.0"
[tool.poetry.scripts]
bat = 'blender_asset_tracer.cli:cli_main'
[tool.poetry.group.dev.dependencies]
twine = "^4.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"