|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "yafowil.widget.wysihtml5" |
| 7 | +version = "2.0.dev0" |
| 8 | +description = "wysihtml5 richtext widget for YAFOWIL with bootstrap integration" |
| 9 | +readme = "README.rst" |
| 10 | +license = {text = "Simplified BSD"} |
| 11 | +authors = [{ name = "Yafowil Contributors", email = "[email protected]"}] |
| 12 | +classifiers = [ |
| 13 | + "Environment :: Web Environment", |
| 14 | + "Operating System :: OS Independent", |
| 15 | + "Programming Language :: Python", |
| 16 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 17 | + "License :: OSI Approved :: BSD License", |
| 18 | + "Programming Language :: Python :: 2.7", |
| 19 | + "Programming Language :: Python :: 3.5", |
| 20 | + "Programming Language :: Python :: 3.6", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | +] |
| 23 | +dependencies = [ |
| 24 | + "yafowil>2.1.99", |
| 25 | +] |
| 26 | + |
| 27 | +[project.optional-dependencies] |
| 28 | +test = [ |
| 29 | + "lxml", |
| 30 | + "pytest", |
| 31 | +] |
| 32 | + |
| 33 | +[project.entry-points."yafowil.plugin"] |
| 34 | +register = "yafowil.widget.wysihtml5:register" |
| 35 | +example = "yafowil.widget.wysihtml5.example:get_example" |
| 36 | + |
| 37 | +[tool.setuptools.packages.find] |
| 38 | +where = ["src"] |
| 39 | + |
| 40 | +[tool.setuptools] |
| 41 | +zip-safe = false |
| 42 | + |
| 43 | +[tool.setuptools.package-dir] |
| 44 | +"" = "src" |
| 45 | + |
| 46 | +[tool.zest-releaser] |
| 47 | +create-wheel = true |
0 commit comments