Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
beat
beat.web
Commits
17d0acb2
Commit
17d0acb2
authored
6 years ago
by
Samuel GAIST
Browse files
Options
Downloads
Patches
Plain Diff
[setup] Enforce opening README.rst in utf-8
parent
8f27e623
No related branches found
No related tags found
2 merge requests
!255
1.4.x
,
!250
Refactor buildout
Pipeline
#23421
passed
6 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
2 additions
and
1 deletion
setup.py
+
2
−
1
View file @
17d0acb2
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
###############################################################################
###############################################################################
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
io
import
open
# The only thing we do in this file is to call the setup() function with all
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
# parameters that define our package.
...
@@ -38,7 +39,7 @@ setup(
...
@@ -38,7 +39,7 @@ setup(
license
=
'
AGPLv3
'
,
license
=
'
AGPLv3
'
,
author
=
'
Idiap Research Institute
'
,
author
=
'
Idiap Research Institute
'
,
author_email
=
'
beat.support@idiap.ch
'
,
author_email
=
'
beat.support@idiap.ch
'
,
long_description
=
open
(
'
README.rst
'
).
read
(),
long_description
=
open
(
'
README.rst
'
,
encoding
=
"
utf-8
"
).
read
(),
# This line is required for any distutils based packaging.
# This line is required for any distutils based packaging.
packages
=
find_packages
(),
packages
=
find_packages
(),
...
...
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