Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Tatuya Kamada
wendelin.core
Commits
8bab46e7
Commit
8bab46e7
authored
Oct 02, 2015
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setup: Autogenerate long description from readme and changelog
With the target being to show it on pypi project page.
parent
1f98f91e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
setup.py
setup.py
+6
-2
No files found.
setup.py
View file @
8bab46e7
...
@@ -199,13 +199,17 @@ if os.path.exists('.git'): # FIXME won't work if we are checked out as e.g. sub
...
@@ -199,13 +199,17 @@ if os.path.exists('.git'): # FIXME won't work if we are checked out as e.g. sub
register_as_entrypoint
(
git_lsfiles
,
'git'
,
'setuptools.file_finders'
,
'setuptools'
)
register_as_entrypoint
(
git_lsfiles
,
'git'
,
'setuptools.file_finders'
,
'setuptools'
)
# read file content
def
readfile
(
path
):
with
open
(
path
,
'r'
)
as
f
:
return
f
.
read
()
setup
(
setup
(
name
=
'wendelin.core'
,
name
=
'wendelin.core'
,
version
=
'0.4'
,
version
=
'0.4'
,
description
=
'Out-of-core NumPy arrays'
,
description
=
'Out-of-core NumPy arrays'
,
long_description
=
'%s
\
n
----
\
n
\
n
%s'
%
(
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG'
)),
url
=
'https://lab.nexedi.com/nexedi/wendelin.core'
,
url
=
'https://lab.nexedi.com/nexedi/wendelin.core'
,
license
=
'GPLv3+ with wide exception for Open-Source'
,
license
=
'GPLv3+ with wide exception for Open-Source'
,
author
=
'Kirill Smelkov'
,
author
=
'Kirill Smelkov'
,
...
...
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