|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools >= 61.2.0", "wheel", "setuptools_scm[toml] >= 3.4.3"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "parglare" |
| 7 | +authors = [{ name = "Igor R. Dejanovic", email = "[email protected]"}] |
| 8 | +license = {text = "MIT"} |
| 9 | +description = "A pure Python Scannerless LR/GLR parser" |
| 10 | +keywords = ["parglare"] |
| 11 | +readme = "README.rst" |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 4 - Beta", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "Intended Audience :: Information Technology", |
| 16 | + "Intended Audience :: Science/Research", |
| 17 | + "Topic :: Software Development :: Interpreters", |
| 18 | + "Topic :: Software Development :: Compilers", |
| 19 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Natural Language :: English", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.6", |
| 24 | + "Programming Language :: Python :: 3.7", |
| 25 | + "Programming Language :: Python :: 3.8", |
| 26 | + "Programming Language :: Python :: 3.9", |
| 27 | + "Programming Language :: Python :: 3.10", |
| 28 | + "Operating System :: OS Independent", |
| 29 | +] |
| 30 | +dependencies = ["click >=7.0, <8.0"] |
| 31 | +dynamic = ["version"] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://github.com/igordejanovic/parglare" |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +dev = [ |
| 38 | + "wheel", |
| 39 | + "mkdocs", |
| 40 | + "mike", |
| 41 | + "twine", |
| 42 | +] |
| 43 | +test = [ |
| 44 | + "flake8", |
| 45 | + "coverage", |
| 46 | + "coveralls", |
| 47 | + "pytest", |
| 48 | +] |
| 49 | + |
| 50 | +[project.scripts] |
| 51 | +pglr = "parglare.cli:pglr" |
| 52 | + |
| 53 | +[tool.setuptools] |
| 54 | +packages = ["parglare", "parglare.tables"] |
| 55 | +zip-safe = false |
| 56 | +include-package-data = true |
| 57 | +package-dir = {parglare = "parglare"} |
| 58 | + |
| 59 | +[tool.setuptools_scm] |
| 60 | +write_to_template = "__version__ = \"{version}\"\n" |
| 61 | +write_to = "parglare/version.py" |
| 62 | + |
| 63 | +[tool.distutils.bdist_wheel] |
| 64 | +universal = 1 |
| 65 | + |
| 66 | +[tool.flake8] |
| 67 | +max-line-length = "90" |
| 68 | +exclude = """ |
| 69 | +.git/*,.eggs/*, |
| 70 | +parglare/six.py, |
| 71 | +build/*,venv/*""" |
0 commit comments