Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into adrien
[simgrid.git] / docs / source / _ext / javasphinx / setup.py
1 #
2 # Copyright 2012-2015 Bronto Software, Inc. and contributors
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 from setuptools import setup
18
19 setup(
20     name = "javasphinx",
21     packages = ["javasphinx"],
22     version = "0.9.15",
23     author = "Chris Thunes",
24     author_email = "cthunes@brewtab.com",
25     url = "http://github.com/bronto/javasphinx",
26     description = "Sphinx extension for documenting Java projects",
27     license = "Apache 2.0",
28     classifiers = [
29         "Programming Language :: Python",
30         "Development Status :: 4 - Beta",
31         "Operating System :: OS Independent",
32         "License :: OSI Approved :: Apache Software License",
33         "Intended Audience :: Developers",
34         "Topic :: Software Development :: Libraries"
35         ],
36     install_requires=[
37         "javalang>=0.10.1",
38         "lxml",
39         "beautifulsoup4",
40         "future",
41         "docutils",
42         "sphinx"
43     ],
44     entry_points={
45         'console_scripts': [
46             'javasphinx-apidoc = javasphinx.apidoc:main'
47             ]
48         },
49     long_description = """\
50 ==========
51 javasphinx
52 ==========
53
54 javasphinx is an extension to the Sphinx documentation system which adds support
55 for documenting Java projects. It includes a Java domain for writing
56 documentation manually and a javasphinx-apidoc utility which will automatically
57 generate API documentation from existing Javadoc markup.
58 """
59 )