-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathsetup.py.bak
More file actions
80 lines (77 loc) · 2.4 KB
/
setup.py.bak
File metadata and controls
80 lines (77 loc) · 2.4 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dataframe_image",
author="Ted Petrou",
author_email="petrou.theodore@gmail.com",
description="Embed pandas DataFrames as images in pdf and markdown files when "
"converting from Jupyter Notebooks",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="jupyter notebook pandas dataframe image pdf markdown",
url="https://github.com/dexplo/dataframe_image",
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"pandas>=0.24",
"pillow",
"packaging",
],
extras_require={
"convert": [
"nbconvert>=5",
"nbformat",
"aiohttp>=3.10.2",
"requests",
"mistune",
"beautifulsoup4",
],
"playwright": ["playwright"],
"matplotlib": ["matplotlib", "cssutils", "lxml", "cssselect"],
"selenium": ["selenium"],
"html2image": ["html2image"],
"all": [
"nbconvert>=5",
"nbformat",
"aiohttp>=3.10.2",
"requests",
"mistune",
"beautifulsoup4",
"playwright",
"matplotlib",
"cssutils",
"lxml",
"cssselect",
"selenium",
"html2image",
],
},
include_package_data=True,
entry_points={
"console_scripts": ["dataframe_image=dataframe_image._command_line:main"]
},
data_files=[
(
"etc/jupyter/nbconfig/notebook.d",
["jupyter-config/nbconfig/notebook.d/dataframe_image.json"],
)
],
use_scm_version={
"write_to": "dataframe_image/_version.py",
"write_to_template": '__version__ = "{version}"',
"local_scheme": "node-and-date"
# 'tag_regex': r'^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$',
},
setup_requires=["setuptools_scm"],
)