-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
70 lines (65 loc) · 1.55 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
62
63
64
65
66
67
68
69
70
[project]
name = "peval"
version = "0.2.0.dev"
license = {text = "MIT"}
authors = [{name = "Bogdan Opanchuk", email = "[email protected]"}]
description = "Partial evaluation on AST level"
keywords = ["AST", "partial", "optimization"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
]
urls = {Homepage = "https://github.com/fjarri/peval"}
requires-python = ">=3.8.0"
dependencies = [
"typing-extensions>=4.2",
]
[project.optional-dependencies]
astunparse = [
"astunparse>=1.3",
]
astor = [
"astor>=0.8",
]
tests = [
"pytest>=7",
"pytest-cov",
]
docs = [
"sphinx>=4",
"furo",
"setuptools-scm>=7",
]
lint = [
"mypy>=0.941",
"black>=23",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
source-includes = [
"tests/**/*.py",
"docs/*.rst",
"docs/*.py",
"docs/*.bat",
"docs/Makefile",
".coveragerc",
"mypy.ini",
]
[tool.setuptools_scm]
[tool.black]
line-length = 100
target-version = ['py38']