Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vincent Pelletier
neoppod
Commits
88c0d6f5
Commit
88c0d6f5
authored
Jul 30, 2014
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Validate reStructuredText if docutils is available
parent
745b7616
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
setup.py
setup.py
+15
-0
No files found.
setup.py
View file @
88c0d6f5
...
...
@@ -37,6 +37,21 @@ extras_require = {
extras_require
[
'tests'
]
=
[
'zope.testing'
,
'psutil>=2'
,
'neoppod[%s]'
%
', '
.
join
(
extras_require
)]
try
:
from
docutils.core
import
publish_string
except
ImportError
:
pass
else
:
from
distutils.dist
import
DistributionMetadata
_get_long_description
=
DistributionMetadata
.
get_long_description
.
im_func
def
get_long_description
(
self
):
r
=
_get_long_description
(
self
)
DistributionMetadata
.
get_long_description
=
_get_long_description
publish_string
(
r
,
enable_exit_status
=
True
,
settings_overrides
=
{
'exit_status_level'
:
0
})
return
r
DistributionMetadata
.
get_long_description
=
get_long_description
setup
(
name
=
'neoppod'
,
version
=
'1.2'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment