-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.11 KB
/
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
45
46
47
48
[tool.poetry]
name = "dashmips"
version = "0.1.10"
description = "Mips Interpreter"
authors = ["Neal Beeken <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nbbeeken/dashmips"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Topic :: Software Development :: Assemblers",
"Programming Language :: Assembly",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.scripts]
dashmips = "dashmips.__main__:main"
[tool.poetry.dependencies]
"python" = "^3.8"
"dataclasses" = { version = "^0.6", python = "3.6" }
"typing-extensions" = "3.7.4.2"
[tool.poetry.dev-dependencies]
"pip" = "^20.1.1"
"wheel" = "^0.34.2"
"mypy" = "^0.782"
"mypy-extensions" = "^0.4.1"
"pycodestyle" = "^2.5.0"
"pydocstyle" = "^5.0.2"
"black" = "^19.10b0"
"pytest" = "^5.0.1"
"pytest-pycodestyle" = "^2.0.1"
"pytest-pydocstyle" = "^2.0.1"
"pytest-mypy" = "^0.6.2"
"pytest-black" = "^0.3.9"
"rope" = "^0.17.0"
[tool.black]
"line-length" = 160
[metadata]
license_files = "LICENSE"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"