|
1 | | -from pathlib import Path |
2 | | - |
3 | 1 | from setuptools import find_packages, setup |
4 | 2 |
|
5 | 3 | setup( |
6 | | - name="sphinx-js", |
7 | | - version="5.0.0", |
8 | | - description="Support for using Sphinx on JSDoc-documented JS code", |
9 | | - long_description=Path("README.rst").read_text(), |
10 | | - long_description_content_type="text/x-rst", |
11 | | - author="Erik Rose", |
12 | | - author_email="erikrose@grinchcentral.com", |
13 | | - license="MIT", |
14 | 4 | packages=find_packages(exclude=["ez_setup"]), |
15 | | - url="https://github.com/mozilla/sphinx-js", |
16 | 5 | include_package_data=True, |
17 | | - install_requires=[ |
18 | | - "Jinja2>2.0", |
19 | | - "parsimonious>=0.10.0,<0.11.0", |
20 | | - "Sphinx>=4.1.0", |
21 | | - "markupsafe==3.0.2", |
22 | | - "attrs", |
23 | | - "cattrs<25.1", |
24 | | - ], |
25 | | - python_requires=">=3.10", |
26 | | - classifiers=[ |
27 | | - "Framework :: Sphinx :: Extension", |
28 | | - "Intended Audience :: Developers", |
29 | | - "Natural Language :: English", |
30 | | - "Development Status :: 5 - Production/Stable", |
31 | | - "License :: OSI Approved :: MIT License", |
32 | | - "Programming Language :: Python :: 3", |
33 | | - "Topic :: Documentation :: Sphinx", |
34 | | - "Topic :: Software Development :: Documentation", |
35 | | - ], |
36 | | - keywords=[ |
37 | | - "sphinx", |
38 | | - "documentation", |
39 | | - "docs", |
40 | | - "javascript", |
41 | | - "js", |
42 | | - "jsdoc", |
43 | | - "restructured", |
44 | | - "typescript", |
45 | | - "typedoc", |
46 | | - ], |
47 | 6 | ) |
0 commit comments