forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove obsolete entry_points (the corresponding code was removed in 08e85c1). - drop setuptools import - adjust setup() argument to conform with distutils format
Showing
1 changed file
with
3 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
from distutils.core import setup | ||
import setuptools | ||
import sys, os | ||
|
||
version = "0.4" | ||
|
||
setup( | ||
name="numpydoc", | ||
packages=["numpydoc"], | ||
package_dir={"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 | ||
|
@@ -20,12 +18,6 @@ | |
author_email="[email protected]", | ||
url="http://github.com/numpy/numpy/tree/master/doc/sphinxext", | ||
license="BSD", | ||
zip_safe=False, | ||
install_requires=["Sphinx >= 1.0.1"], | ||
package_data={'numpydoc': 'tests', '': ''}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"autosummary_generate = numpydoc.autosummary_generate:main", | ||
], | ||
}, | ||
requires=["sphinx (>= 1.0.1)"], | ||
package_data={'numpydoc': ['tests/test_*.py']}, | ||
) |