-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "jeff65"
version = "0.1.0"
description = "A compiler targeting the Commodore 64"
authors = [
"Jonathan David Page <jonathan@sleepingcyb.org>",
"Woodrow Barlow <wjbarlow@ncsu.edu>"
]
readme = "README.md"
repository = "https://github.com/anachronauts/jeff65"
license = "GPL-3.0+"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Topic :: Software Development :: Compilers",
]
packages = [
{include="jeff65", from="src"}
]
[tool.poetry.dependencies]
python = "^3.6"
attrs = ">=18.2.0"
regex = ">=2018.08.29"
[tool.poetry.dev-dependencies]
pytest = ">=4.2"
pytest-cov = ">=2.6.1"
flake8 = "^3.7.4"
coverage = "^4.5.2"
hypothesis = "^4.5.0"
xvfbwrapper = ">=0.2.9"
black = ">=18.9b0"
[tool.poetry.scripts]
jeff65 = "jeff65:main"
[build-system]
requires = ["poetry>=1.0.0a2"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88
py36 = true
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''