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
|
import os
from pathlib import Path
from setuptools import setup, find_packages
with open("./README.md") as ff:
readme_text = ff.read()
# Parse version
init = Path(__file__).parent.joinpath("sphinx_copybutton", "__init__.py")
for line in init.read_text().split("\n"):
if line.startswith("__version__ ="):
break
version = line.split(" = ")[-1].strip('"')
setup(
name="sphinx-copybutton",
version=version,
description="Add a copy button to each of your code cells.",
long_description=readme_text,
long_description_content_type="text/markdown",
author="Executable Book Project",
url="https://github.com/executablebooks/sphinx-copybutton",
license="MIT License",
packages=find_packages(),
package_data={
"sphinx_copybutton": [
"_static/copybutton.css",
"_static/copybutton_funcs.js",
"_static/copybutton.js_t",
"_static/copy-button.svg",
"_static/check-solid.svg",
"_static/clipboard.min.js",
]
},
classifiers=[
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: MIT License",
"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 :: Only",
],
python_requires=">=3.7",
install_requires=["sphinx>=1.8"],
extras_require={
"code_style": ["pre-commit==2.12.1"],
"rtd": [
"sphinx",
"ipython",
"myst-nb",
"sphinx-book-theme",
"sphinx-examples",
],
},
)
|