-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (52 loc) · 1.74 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
53
54
55
import subprocess
import setuptools
try:
ret = subprocess.check_output(
"git describe --tags --abbrev=0",
shell=True,
)
version = ret.decode("utf-8").strip()
except:
version = "main"
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setuptools.setup(
name="sphinxext-presentations",
version=version,
author="Vasista Vovveti",
author_email="[email protected]",
description="Sphinx Extension that turns documentation into presentations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wpilibsuite/sphinxext-presentations",
packages=["sphinxext/presentations"],
package_data={
"sphinxext/presentations": [
"static/css/*",
"static/js/*",
]
},
include_package_data=True,
install_requires=["sphinx>=2.0"],
classifiers=[
"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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Documentation :: Sphinx",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Utilities",
],
python_requires=">=3.6",
)