forked from crunchr/excelr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 716 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 716 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
[tool.poetry]
name = "excelr"
version = "0.1.3"
description = ""
authors = ["Daniel Bradburn <daniel@crunchrapps.com>"]
include = [
"xlsx_template/*",
"xlsx_template/_rels/*",
"xlsx_template/docProps/*",
"xlsx_template/xl/*",
"xlsx_template/xl/_rels/*",
"xlsx_template/xl/worksheets/*",
"_excelr.pyx",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
jupyter = "^1.0.0"
pandas = "^1.2.3"
hypothesis = "^6.8.1"
openpyxl = "^3.0.7"
memory-profiler = "^0.58.0"
pyinstrument = "^3.4.1"
seaborn = "^0.11.1"
lxml = "^4.6.3"
mistletoe = "^0.7.2"
pycodestyle = "^2.7.0"
mypy = "^0.910"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"