-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.46 KB
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
[tool.poetry]
name = "{{ PACKAGE_NAME }}"
version = "0.1.0"
description = "{{ DESCRIPTION }}"
authors = ["{{ AUTHOR }} <cabernet.rock@gmail.com>"]
license = "MIT"
repository = "https://github.com/{{ AUTHOR }}/{{ REPOSITORY_NAME }}"
homepage = "https://{{ AUTHOR }}.github.io/{{ REPOSITORY_NAME }}/"
readme = "README.md"
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Environment :: Console",
"Environment :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{include = "{{ MODULE_NAME }}"}
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/{{ AUTHOR }}/{{ REPOSITORY_NAME }}/issues"
"Source Code" = "https://github.com/{{ AUTHOR }}/{{ REPOSITORY_NAME }}"
"Say Thanks!" = "https://twitter.com/{{ TWITTER_USERNAME }}"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
flake8 = "^3.9.2"
isort = "^5.8.0"
mypy = "^0.812"
black = "^21.5b1"
pylint = "^2.8.2"
ipykernel = "^6.0.1"
Sphinx = "^4.0.2"
sphinxemoji = "^0.1.8"
sphinx-togglebutton = "^0.2.3"
sphinxext-opengraph = "^0.4.2"
sphinx_fontawesome = "^0.0.6"
sphinx-notfound-page = "^0.7.1"
[tool.poetry.scripts]
command-name = "{{ MODULE_NAME }}.cli.main:func"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"