Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spams-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
thoth
spams-python
Commits
d2a24537
"README.md" did not exist on "11424903e647e0a67d0823f83869736f2be12c13"
Commit
d2a24537
authored
3 years ago
by
GD
Browse files
Options
Downloads
Patches
Plain Diff
manage package version in a dedicated file
parent
da7e1e26
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MANIFEST.in
+1
-0
1 addition, 0 deletions
MANIFEST.in
setup.py
+10
-2
10 additions, 2 deletions
setup.py
version
+1
-0
1 addition, 0 deletions
version
with
12 additions
and
2 deletions
MANIFEST.in
+
1
−
0
View file @
d2a24537
include README.md
include LICENSE.txt
include version
recursive-include spams_wrap *.h
recursive-include spams_wrap *.cpp
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
10
−
2
View file @
d2a24537
...
...
@@ -186,19 +186,27 @@ def mkhtml(d=None, base='sphinx'):
return
l
# project root directory
this_directory
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
# version number
with
open
(
os
.
path
.
join
(
this_directory
,
"
version
"
),
encoding
=
"
utf-8
"
)
as
v
:
current_version
=
v
.
read
().
rstrip
()
# package description
with
open
(
os
.
path
.
join
(
this_directory
,
'
README.md
'
),
encoding
=
'
utf-8
'
)
as
f
:
long_description
=
f
.
read
()
# setup config
opts
=
dict
(
name
=
'
spams
'
,
version
=
'
2.6.3.0
'
,
version
=
current_version
,
description
=
'
Python interface for SPAMS
'
,
long_description
=
long_description
,
long_description_content_type
=
'
text/markdown
'
,
author
=
'
Julien Mairal
'
,
author_email
=
'
spams.dev@inria.fr
'
,
url
=
'
http://
spams-devel.gforge.inria.fr
/
'
,
url
=
'
http
s
://
thoth.inrialpes.fr/people/mairal/spams
/
'
,
license
=
'
GPLv3
'
,
python_requires
=
'
>=3
'
,
install_requires
=
[
'
Cython>=0.29
'
,
'
numpy>=1.12
'
,
...
...
This diff is collapsed.
Click to expand it.
version
0 → 100644
+
1
−
0
View file @
d2a24537
2.6.3.1
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment