-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
63 lines (62 loc) · 1.32 KB
/
cookiecutter.json
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
{
"full_name": "Bryan Patrick Wood",
"email": "[email protected]",
"github_username": "bpw1621",
"pypi_username": "bpw1621",
"project_name": "Python Package Template",
"project_slug": "{{cookiecutter.project_name.lower().replace(' ', '-').replace('-', '-')}}",
"package_slug": "{{cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_')}}",
"version": "0.0a0",
"project_description": "More opinionated Python package template code.",
"python_version": ["3.8", "3.6", "3.7", "3.9", "3.10"],
"base_image": "python:{{cookiecutter.python_version}}",
"__requires": {
"base": [
"python-dotenv",
"joblib",
"humanize",
"more-itertools",
"pluggy",
"regex",
"requests",
"tqdm",
"importlib_resources; python_version < \"3.7\"",
"debtcollector"
],
"api": [
"fastapi"
],
"cli": [
"typer"
],
"dev": [
"flake8",
"pretty_errors",
"tox",
"twine"
],
"doc": [
"sphinx",
"sphinx_rtd_theme",
"towncrier"
],
"gui": [
"streamlit"
],
"nlp": [
"gensim",
"nltk",
"pyldavis",
"scattertext",
"spacy",
"stanza",
"textacy",
"wordcloud"
],
"test": [
"pytest",
"pytest-cov",
"pytest-mock"
]
}
}