|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "markdownify" |
| 7 | +version = "0.13.1" |
| 8 | +authors = [{ name = "Matthew Tretter", email = "[email protected]"}] |
| 9 | +description = "Convert HTML to markdown." |
| 10 | +readme = "README.rst" |
| 11 | +classifiers = [ |
| 12 | + "Environment :: Web Environment", |
| 13 | + "Framework :: Django", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: MIT License", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python :: 2.5", |
| 18 | + "Programming Language :: Python :: 2.6", |
| 19 | + "Programming Language :: Python :: 2.7", |
| 20 | + "Programming Language :: Python :: 3.6", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Topic :: Utilities", |
| 24 | +] |
| 25 | +dependencies = [ |
| 26 | + "beautifulsoup4>=4.9,<5", |
| 27 | + "six>=1.15,<2" |
| 28 | +] |
| 29 | + |
| 30 | +[project.urls] |
| 31 | +Homepage = "http://github.com/matthewwithanm/python-markdownify" |
| 32 | +Download = "http://github.com/matthewwithanm/python-markdownify/tarball/master" |
| 33 | + |
| 34 | +[project.scripts] |
| 35 | +markdownify = "markdownify.main:main" |
| 36 | + |
| 37 | +[tool.setuptools] |
| 38 | +zip-safe = false |
| 39 | +include-package-data = true |
| 40 | + |
| 41 | +[tool.setuptools.packages.find] |
| 42 | +include = ["markdownify", "markdownify.*"] |
| 43 | +namespaces = false |
| 44 | + |
| 45 | +[tool.setuptools_scm] |
0 commit comments