-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 957 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.poetry]
name = "tokelor"
version = "0.1.6"
license = "MIT"
readme = "README.md"
repository = "https://github.com/lensvol/tokelor"
keywords = ["tokenize", "tokens"]
description = "Visualize Python token stream produced by tokenize module."
authors = ["Kirill Borisov <[email protected]>"]
include = [
"LICENSE",
]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
colorama = ">=0.4,<0.5"
[tool.poetry.scripts]
tokelor = 'tokelor.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"