mirror of
https://github.com/unitedstates/congress-legislators.git
synced 2026-05-16 16:02:28 -04:00
24 lines
788 B
Python
24 lines
788 B
Python
from distutils.core import setup
|
|
|
|
version = "0.4"
|
|
|
|
setup(
|
|
name="numpydoc",
|
|
packages=["numpydoc"],
|
|
package_dir={"numpydoc": "."},
|
|
version=version,
|
|
description="Sphinx extension to support docstrings in Numpy format",
|
|
# classifiers from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=["Development Status :: 3 - Alpha",
|
|
"Environment :: Plugins",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Topic :: Documentation"],
|
|
keywords="sphinx numpy",
|
|
author="Pauli Virtanen and others",
|
|
author_email="pav@iki.fi",
|
|
url="http://github.com/numpy/numpy/tree/master/doc/sphinxext",
|
|
license="BSD",
|
|
requires=["sphinx (>= 1.0.1)"],
|
|
package_data={'numpydoc': ['tests/test_*.py']},
|
|
)
|