-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.46 KB
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
[build-system]
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "esprima"
authors = [{name = "German M. Bravo (Kronuz)", email = "german.mb@gmail.com"}]
license = {text = "BSD-2-Clause"}
description = "ECMAScript parsing infrastructure for multipurpose analysis in Python"
readme = "README.rst"
keywords = [
"esprima",
"ecmascript",
"javascript",
"parser",
"ast",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
urls = {Homepage = "https://github.com/Kronuz/esprima-python"}
dynamic = ["version"]
[project.scripts]
esprima = "esprima.__main__:main"
[tool.setuptools]
packages = ["esprima"]
license-files = ["LICENSE.BSD"]
include-package-data = false
[tool.setuptools_scm]