-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·52 lines (48 loc) · 2.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import find_packages, setup # type: ignore
from draftjs_exporter import __version__
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
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="hello@springload.co.nz",
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",
"Programming Language :: Python :: 3.13",
"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,
)