METADATA 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. Metadata-Version: 2.1
  2. Name: tinycss2
  3. Version: 1.4.0
  4. Summary: A tiny CSS parser
  5. Keywords: css,parser
  6. Author-email: Simon Sapin <simon.sapin@exyr.org>
  7. Maintainer-email: CourtBouillon <contact@courtbouillon.org>
  8. Requires-Python: >=3.8
  9. Description-Content-Type: text/x-rst
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Operating System :: OS Independent
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Programming Language :: Python :: 3 :: Only
  17. Classifier: Programming Language :: Python :: 3.8
  18. Classifier: Programming Language :: Python :: 3.9
  19. Classifier: Programming Language :: Python :: 3.10
  20. Classifier: Programming Language :: Python :: 3.11
  21. Classifier: Programming Language :: Python :: 3.12
  22. Classifier: Programming Language :: Python :: Implementation :: CPython
  23. Classifier: Programming Language :: Python :: Implementation :: PyPy
  24. Classifier: Topic :: Text Processing
  25. Requires-Dist: webencodings >=0.4
  26. Requires-Dist: sphinx ; extra == "doc"
  27. Requires-Dist: sphinx_rtd_theme ; extra == "doc"
  28. Requires-Dist: pytest ; extra == "test"
  29. Requires-Dist: ruff ; extra == "test"
  30. Project-URL: Changelog, https://github.com/Kozea/tinycss2/releases
  31. Project-URL: Code, https://github.com/Kozea/tinycss2/
  32. Project-URL: Documentation, https://doc.courtbouillon.org/tinycss2/
  33. Project-URL: Donation, https://opencollective.com/courtbouillon
  34. Project-URL: Homepage, https://www.courtbouillon.org/tinycss2
  35. Project-URL: Issues, https://github.com/Kozea/tinycss2/issues
  36. Provides-Extra: doc
  37. Provides-Extra: test
  38. tinycss2 is a low-level CSS parser and generator written in Python: it can
  39. parse strings, return objects representing tokens and blocks, and generate CSS
  40. strings corresponding to these objects.
  41. Based on the CSS Syntax Level 3 specification, tinycss2 knows the grammar of
  42. CSS but doesn't know specific rules, properties or values supported in various
  43. CSS modules.
  44. * Free software: BSD license
  45. * For Python 3.8+, tested on CPython and PyPy
  46. * Documentation: https://doc.courtbouillon.org/tinycss2
  47. * Changelog: https://github.com/Kozea/tinycss2/releases
  48. * Code, issues, tests: https://github.com/Kozea/tinycss2
  49. * Code of conduct: https://www.courtbouillon.org/code-of-conduct
  50. * Professional support: https://www.courtbouillon.org
  51. * Donation: https://opencollective.com/courtbouillon
  52. tinycss2 has been created and developed by Kozea (https://kozea.fr).
  53. Professional support, maintenance and community management is provided by
  54. CourtBouillon (https://www.courtbouillon.org).
  55. Copyrights are retained by their contributors, no copyright assignment is
  56. required to contribute to tinycss2. Unless explicitly stated otherwise, any
  57. contribution intentionally submitted for inclusion is licensed under the BSD
  58. 3-clause license, without any additional terms or conditions. For full
  59. authorship information, see the version control history.