-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tentatively declare Python 3.13 compatibility
- Loading branch information
1 parent
ea3e061
commit 494815a
Showing
1 changed file
with
4 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,9 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import find_packages, setup # type: ignore | ||
NOT_YET_IMPLEMENTED_StmtImportFrom # type: ignore | ||
|
||
from draftjs_exporter import __version__ | ||
NOT_YET_IMPLEMENTED_StmtImportFrom | ||
|
||
with open("README.md", encoding="utf-8") as readme_file: | ||
long_description = readme_file.read() | ||
NOT_YET_IMPLEMENTED_StmtWith | ||
|
||
setup( | ||
name="draftjs_exporter", | ||
version=__version__, | ||
description="Library to convert rich text from Draft.js raw ContentState to HTML", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Springload", | ||
author_email="[email protected]", | ||
url="https://github.com/springload/draftjs_exporter", | ||
packages=find_packages(exclude=["tests*"]), | ||
include_package_data=True, | ||
license="MIT", | ||
classifiers=[ | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Development Status :: 5 - Production/Stable", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
"Topic :: Internet :: WWW/HTTP :: Site Management", | ||
"Topic :: Software Development :: Libraries :: Application Frameworks", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Text Editors :: Word Processors", | ||
"Typing :: Typed", | ||
], | ||
package_data={"draftjs_exporter": ["py.typed"]}, | ||
extras_require={ | ||
# Keep this in sync with the dependencies in setup.py, requirements.txt, tox.ini. | ||
"lxml": ["lxml>=4.2.0,<5"], | ||
"html5lib": ["beautifulsoup4>=4.4.1,<5", "html5lib>=0.999,<2"], | ||
}, | ||
zip_safe=False, | ||
) | ||
NOT_YET_IMPLEMENTED_ExprCall |