This repository was archived by the owner on Nov 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 7
7
Other checks can be added, e.g. NumPy docstring conventions:
8
8
https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
9
9
10
- The repository of is located at:
10
+ The repository is located at:
11
11
http://github.com/GreenSteam/pep257
12
12
13
13
"""
@@ -156,7 +156,7 @@ def __init__(self, message):
156
156
self , message +
157
157
'That means pep257 cannot decide which definitions are public. '
158
158
'Variable __all__ should be present at most once in each file, '
159
- "in form `__all__ = [ 'a_public_function', 'APublicClass', ...] `. "
159
+ "in form `__all__ = ( 'a_public_function', 'APublicClass', ...) `. "
160
160
'More info on __all__: http://stackoverflow.com/q/44834/. ' )
161
161
162
162
Original file line number Diff line number Diff line change 1
- """`pep257` lives on `GitHub <http://github.com/GreenSteam/pep257/>`_."""
2
1
from __future__ import with_statement
3
2
from distutils .core import setup
4
3
13
12
name = 'pep257' ,
14
13
version = version ,
15
14
description = "Python docstring style checker" ,
16
- long_description = __doc__ ,
15
+ long_description = open ( 'README.rst' ). read () ,
17
16
license = 'MIT' ,
18
17
author = 'Vladimir Keleshev' ,
19
18
url = 'https://github.com/GreenSteam/pep257/' ,
You can’t perform that action at this time.
0 commit comments