-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
39 lines (37 loc) · 1.42 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
from io import open
from setuptools import setup, find_packages
setup(
name='sphinx-js',
version='3.2.2',
description='Support for using Sphinx on JSDoc-documented JS code',
long_description=open('README.rst', 'r', encoding='utf8').read(),
long_description_content_type="text/x-rst",
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',
# Pin markupsafe because of
# https://github.com/pallets/jinja/issues/1585
'markupsafe==2.0.1',
],
python_requires='>=3.8',
classifiers=[
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Topic :: Documentation :: Sphinx',
'Topic :: Software Development :: Documentation'
],
keywords=['sphinx', 'documentation', 'docs', 'javascript', 'js', 'jsdoc', 'restructured', 'typescript', 'typedoc'],
)