forked from mozilla/sphinx-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (45 loc) · 1.3 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
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="sphinx-js",
version="3.2.1",
description="Support for using Sphinx on JSDoc-documented JS code",
long_description=Path("README.rst").read_text(),
long_description_content_type="text/x-rst",
author="Erik Rose",
author_email="erikrose@grinchcentral.com",
license="MIT",
packages=find_packages(exclude=["ez_setup"]),
url="https://github.com/mozilla/sphinx-js",
include_package_data=True,
install_requires=[
"Jinja2>2.0",
"parsimonious>=0.10.0,<0.11.0",
"Sphinx>=4.1.0",
"markupsafe==3.0.2",
"attrs",
"cattrs",
],
python_requires=">=3.10",
classifiers=[
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
],
keywords=[
"sphinx",
"documentation",
"docs",
"javascript",
"js",
"jsdoc",
"restructured",
"typescript",
"typedoc",
],
)