|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "cedarscript_grammar" |
| 7 | +version = "0.0.3" |
| 8 | +description = "CEDARScript grammar.js for tree-sitter" |
| 9 | +authors = [ |
| 10 | + {name = "Elifarley", email = "cedarscript@orgecc.com"}, |
| 11 | +] |
| 12 | +readme = "README.md" |
| 13 | +license = {text = "MIT"} |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 3 - Alpha", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Topic :: Software Development :: Compilers", |
| 23 | + "Topic :: Text Processing :: Linguistic", |
| 24 | + "Typing :: Typed" |
| 25 | +] |
| 26 | +keywords = ["incremental", "parsing", "tree-sitter", "cedarscript", "shared-library", "dylib", "so", "python-binding"] |
| 27 | +requires-python = ">=3.9" |
| 28 | +dependencies = [ |
| 29 | + "tree-sitter~=0.21", |
| 30 | +] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +Homepage = "https://github.com/CEDARScript/cedarscript-grammar#readme" |
| 34 | +"Bug Tracker" = "https://github.com/CEDARScript/cedarscript-grammar/issues" |
| 35 | + |
| 36 | +[tool.setuptools] |
| 37 | +packages = ["cedarscript_grammar"] |
| 38 | + |
| 39 | +[tool.setuptools.package-data] |
| 40 | +cedarscript_grammar = ["py.typed", "*.so", "*.dylib", "*.dll"] |
| 41 | + |
| 42 | +[tool.setuptools.dynamic] |
| 43 | +version = {attr = "cedarscript_grammar.__version__"} |
| 44 | + |
| 45 | +[tool.black] |
| 46 | +line-length = 100 |
| 47 | +target-version = ['py39'] |
| 48 | + |
| 49 | +[tool.isort] |
| 50 | +profile = "black" |
| 51 | +line_length = 100 |
| 52 | + |
| 53 | +[tool.mypy] |
| 54 | +python_version = "3.9" |
| 55 | +strict = true |
| 56 | +warn_return_any = true |
| 57 | +warn_unused_configs = true |
0 commit comments