File: setup.py

package info (click to toggle)
sphinxcontrib-phpdomain 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 580 kB
  • sloc: python: 811; makefile: 151
file content (61 lines) | stat: -rw-r--r-- 1,591 bytes parent folder | download
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
56
57
58
59
60
61
import os
from setuptools import setup, find_packages

with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r") as f:
    requirements = f.read()

long_desc = """
This package provides a Sphinx extension for documenting PHP projects.

PHP Domain supports following objects:

* Global variable
* Global function
* Constants
* Namespaces

    * Functions
    * Class

* Class

    * Class constant
    * Instance methods
    * Static methods
    * Properties

* Enums
"""

setup(
    name="sphinxcontrib-phpdomain",
    version="0.13.0",
    url="https://github.com/markstory/sphinxcontrib-phpdomain",
    download_url="http://pypi.python.org/pypi/sphinxcontrib-phpdomain",
    license="BSD",
    author="Mark Story",
    author_email="mark@mark-story.com",
    description="Sphinx extension to enable documenting PHP code",
    long_description=long_desc,
    project_urls={
        "Documentation": "https://markstory.github.io/sphinxcontrib-phpdomain/",
    },
    classifiers=[
        "Environment :: Console",
        "Environment :: Web Environment",
        "Framework :: Sphinx :: Domain",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Topic :: Documentation",
        "Topic :: Utilities",
    ],
    platforms="any",
    dependency_links=[],
    namespace_packages=["sphinxcontrib"],
    packages=find_packages(exclude=["test*"]),
    include_package_data=True,
    install_requires=requirements,
    zip_safe=False,
)