-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (35 loc) · 1003 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
38
39
40
41
42
43
44
[tool.poetry]
name = "lexicon-gauthamkrishna9991"
version = "0.1.2"
description = "A Verilog Project Management Tool"
authors = ["Goutham Krishna K V <[email protected]>"]
readme = "docs/README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [{ include = "lexicon", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
colorama = "0.4.4"
PyYAML = "5.4.1"
six = "1.15.0"
wcwidth = "0.2.5"
inquirer = "^3.1.2"
blessed = "^1.19.1"
[tool.poetry.group.dev.dependencies]
black = {version = ">=23.1,<25.0", allow-prereleases = true}
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# [build-system]
# requires = ["setuptools", "wheel"]
# build-backend = "setuptools.build_meta"
[tool.poetry.scripts]
lexicon = "lexicon.main:main"
# black configuration
[tool.black]
line-length = 100
target-version = ['py37', 'py39']