-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
43 lines (41 loc) · 1.57 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
import setuptools
with open("README.md", encoding="utf-8") as readme:
long_description = readme.read()
setuptools.setup(
name="sphinxext-opengraph",
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Itay Ziv",
author_email="itay220204@gmail.com",
description="Sphinx Extension to enable OGP support",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wpilibsuite/sphinxext-opengraph",
license="LICENSE.md",
install_requires=["sphinx>=5.0"],
packages=["sphinxext/opengraph"],
include_package_data=True,
package_data={"sphinxext.opengraph": ["sphinxext/opengraph/_static/*"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Topic :: Documentation :: Sphinx",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Utilities",
],
python_requires=">=3.8",
)