-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 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
47
48
49
50
51
52
53
[tool.poetry]
name = "datascience-cookiecutter"
version = "0.1.0"
description = "A python cookiecutter application to create a new data science python project that uses poetry to manage its dependencies."
authors = ["Felix Gao <[email protected]>"]
repository = "https://github.com/felixgao/data-science-cookiecutter"
documentation = "https://github.com/felixgao/data-science-cookiecutter"
readme = "README.md"
keywords = ['cookiecutter', 'template', 'poetry', 'data-science']
include = [
'{{cookiecutter.project_slug}}/**/*',
'cookiecutter.json',
]
[tool.black]
line-length = 120
include = '\.pyi?$'
target-version = ['py39']
fast = true
exclude = '''
(
/( # exclude a few common directories in the
\.git # root of the project
| \.pytest_cache
| python-venv
| \.venv
| build
| dist
| {{cookiecutter.project_slug}}
| \.tox
))
'''
[tool.isort]
profile = "black"
skip = ["{{cookiecutter.project_slug}}",".venv"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
cookiecutter = "^1.7.3"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
isort = "^5.10.1"
black = "^22.3.0"
pytest-cookies = "^0.6.1"
tox = "^3.25.0"
mkdocs = "^1.3.0"
mkdocs-material = "^8.2.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"