forked from sloria/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (32 loc) · 914 Bytes
/
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
[tool.nitpick]
style = ["https://raw.githubusercontent.com/andreoliwa/nitpick/develop/nitpick-style.toml"]
[tool.poetry]
name = "pydotfiles"
version = "0.1.0"
description = ""
authors = ["W Augusto Andreoli <andreoliwa@sent.com>"]
license = "MIT"
repository = "https://github.com/andreoliwa/dotfiles"
keywords = ["python3", "cli"]
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
]
[tool.black]
line-length = 120
[tool.poetry.dependencies]
python = "^3.7"
pylint = {optional = true, version = "*"}
[tool.poetry.extras]
lint = [ "pylint",]
[tool.poetry.dev-dependencies]
pudb = "*"
ipython = "*"
pylint = "*"