-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.55 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
63
64
65
66
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "bcompiler-engine"
version = "1.1.7"
authors = [
{name = "Matthew Lemon", email = "[email protected]"},
]
description = "Library for parsing spreadsheets using datamaps"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"openpyxl>=3.1.2",
"appdirs>=1.4.4",
"wheel>=0.41.2"
]
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[tool.poetry]
# poetry build will not work because this directory is not in project root
name = "bcompiler-engine"
version = "1.1.5"
description = "A new, faster, more efficient, more modular back end for datamap tools and interfaces."
homepage = "https://github.com/hammerheadlemon/bcompiler-engine"
repository = "https://github.com/hammerheadlemon/bcompiler-engine"
license = "MIT"
readme = "README.md"
authors = ["Matthew Lemon"]
packages = [
{ include = "engine" },
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/hammerheadlemon/bcompiler-engine/issues"
[tool.poetry.dependencies]
python = "^3.7.0"
openpyxl = "^3.0.3"
appdirs = "^1.4.3"
wheel = "^0.36.2"
[tool.poetry.dev-dependencies]
pdbpp = "^0.10.2"
flake8 = "^3.8.2"
black = "^19.10b0"
pytest = "^5.4.1"
pytest-cov = "^2.7.1"
coverage = "^5.1"
nox = "^2019.11.9"
twine = "^3.1.1"
wheel = "^0.36.2"
mypy = "^0.790"
isort = "^5.6.4"
yapf = "^0.30.0"
[tools.black]
max-length-length=88