-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (43 loc) · 1.3 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
[build-system]
requires = ['poetry>=0.12']
build-backend = 'poetry.masonry.api'
[tool.poetry]
name = 'softfab'
version = "3.0.0-pre1"
description = 'Web application for orchestrating build and test execution'
authors = [
'Maarten ter Huurne <[email protected]>',
'Hans Spanjers <[email protected]>',
]
license = 'BSD-3-Clause'
readme = 'README.md'
homepage = 'https://boxingbeetle.com/tools/softfab/'
repository = 'https://github.com/boxingbeetle/softfab'
documentation = 'https://docs.softfab.io/'
keywords = ['build', 'test', 'execution', 'process', 'report']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
]
[tool.poetry.dependencies]
python = '^3.5'
Twisted = '>=16.6'
passlib = {version = '^1.7', extras = ['bcrypt']}
pygraphviz = '^1.4'
pytz = '*'
importlib_resources = "^1.0"
"zope.interface" = '^4.4.2'
[tool.poetry.dev-dependencies]
lektor = '^3.1'
pdoc3 = '^0.5.1'
pytest = '^4.0'
pylint = '^2.0'
invoke = '^1.2'
mypy = '^0.670.0'
typing_extensions = '^3.7'