-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (45 loc) · 1.25 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
[project]
name = "funcy-stubs"
version = "0.1.1"
description = "Type stubs for funcy"
authors = [
{name = "Ruan Comelli", email = "[email protected]"},
]
dependencies = [
"funcy==1.17",
"typing-extensions>=3.10.0",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "BSD"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Stubs Only",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["type-annotations", "mypy-stubs"]
[project.urls]
Homepage = "https://github.com/ruancomelli/funcy-stubs"
Repository = "https://github.com/ruancomelli/funcy-stubs"
Documentation = "https://github.com/ruancomelli/funcy-stubs"
[project.optional-dependencies]
[tool.pdm.build]
includes = [
"funcy-stubs/**.pyi"
]
[tool.pdm.dev-dependencies]
dev = [
"mypy>=0.971",
"whatever>=0.6",
"pytest>=6.2.5",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"