-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (41 loc) · 1.08 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
# pyproject.toml
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "think-lang"
version = "0.1.9.rc4"
description = "Think - A language for learning computational thinking"
readme = "README.md"
authors = [
{ name = "Lawrence Wilson Gray", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["education", "programming", "computational thinking"]
dependencies = [
"ply",
"ipython",
"jupyter"
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://think-lang.org"
Documentation = "https://think-lang.readthedocs.io/"
Repository = "https://github.com/lwgray/think.git"
Issues = "https://github.com/lwgray/think/issues"
[tool.setuptools]
packages = ["think"]
[tool.setuptools.package-data]
thinkpy = ["py.typed"]
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3