-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 957 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
41
42
43
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ms_ovba"
version = "0.0.1"
authors = [
{ name="Kevin Nowaczyk", email="beakerboy99@yahoo.com" },
]
description = "Create a vbaProject.bin file from VBA source files."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'ms_cfb',
'ms_ovba_compression',
'ms_ovba_crypto'
]
[project.optional-dependencies]
tests = [
'mypy',
'pytest',
'pytest-cov',
'pytest-mock',
'coveralls',
'pep8-naming',
'flake8-annotations'
]
[project.urls]
"Homepage" = "https://github.com/Beakerboy/MS-OVBA"
"Bug Tracker" = "https://github.com/Beakerboy/MS-OVBA/issues"
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = [
"tests",
]
[tool.setuptools.package-data]
"*" = ["*.cls"]