-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (42 loc) · 958 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
45
46
47
48
[build-system]
requires = ["flit_core >=3.7,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "docs2stubs"
authors = [{name = "Graham Wheeler", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version", "description"]
dependencies = [
"flit_core >=3.7",
"docopt",
"libcst",
"black",
"MonkeyType",
"numpy",
"pandas",
"scipy",
"lark",
]
classifiers = ["Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
tests = [
"pytest",
"PyHamcrest",
]
[project.urls]
Source = "https://github.com/gramster/docs2stubs"
[project.scripts]
docs2stubs = "docs2stubs:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.ruff]
line-length = 120