Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.backend.python
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.backend.python
Merge requests
!40
Add BEAT framework classifier
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add BEAT framework classifier
21_put_back_beat_classifier
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Samuel GAIST
requested to merge
21_put_back_beat_classifier
into
master
6 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Fixes
#21 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
d09bd7a4
1 commit,
6 years ago
1 file
+
30
−
30
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
setup.py
+
30
−
30
Options
@@ -33,50 +33,50 @@
# #
###################################################################################
# Define package version
version
=
open
(
"
version.txt
"
).
read
().
rstrip
()
from
setuptools
import
setup
,
find_packages
version
=
open
(
"
version.txt
"
).
read
().
rstrip
()
def
load_requirements
(
f
):
retval
=
[
str
(
k
.
strip
())
for
k
in
open
(
f
,
'
rt
'
)]
return
[
k
for
k
in
retval
if
k
and
k
[
0
]
not
in
(
'
#
'
,
'
-
'
)]
retval
=
[
str
(
k
.
strip
())
for
k
in
open
(
f
,
"
rt
"
)]
return
[
k
for
k
in
retval
if
k
and
k
[
0
]
not
in
(
"
#
"
,
"
-
"
)]
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
setup
(
name
=
'
beat.backend.python
'
,
name
=
"
beat.backend.python
"
,
version
=
open
(
"
version.txt
"
).
read
().
rstrip
(),
description
=
'
Python Backend for the BEAT Platform
'
,
url
=
'
https://gitlab.idiap.ch/beat/beat.backend.python
'
,
license
=
'
BSD
'
,
author
=
'
Idiap Research Institute
'
,
author_email
=
'
beat.support@idiap.ch
'
,
long_description
=
open
(
'
README.rst
'
).
read
(),
description
=
"
Python Backend for the BEAT Platform
"
,
url
=
"
https://gitlab.idiap.ch/beat/beat.backend.python
"
,
license
=
"
BSD
"
,
author
=
"
Idiap Research Institute
"
,
author_email
=
"
beat.support@idiap.ch
"
,
long_description
=
open
(
"
README.rst
"
).
read
(),
# This line is required for any distutils based packaging.
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
load_requirements
(
'
requirements.txt
'
),
install_requires
=
load_requirements
(
"
requirements.txt
"
),
entry_points
=
{
'
console_scripts
'
:
[
'
execute = beat.backend.python.scripts.execute:main
'
,
'
loop_execute = beat.backend.python.scripts.loop_execute:main
'
,
'
describe = beat.backend.python.scripts.describe:main
'
,
'
databases_provider = beat.backend.python.scripts.databases_provider:main
'
,
'
index = beat.backend.python.scripts.index:main
'
,
]
,
"
console_scripts
"
:
[
"
execute = beat.backend.python.scripts.execute:main
"
,
"
loop_execute = beat.backend.python.scripts.loop_execute:main
"
,
"
describe = beat.backend.python.scripts.describe:main
"
,
"
databases_provider = beat.backend.python.scripts.databases_provider:main
"
,
"
index = beat.backend.python.scripts.index:main
"
,
]
},
classifiers
=
[
'
Development Status :: 5 - Production/Stable
'
,
'
Intended Audience :: Developers
'
,
'
License :: OSI Approved :: BSD License
'
,
'
Natural Language :: English
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python :: 3
'
,
'
Topic :: Software Development :: Libraries :: Python Modules
'
,
classifiers
=
[
"
Framework :: BEAT
"
,
"
Development Status :: 5 - Production/Stable
"
,
"
Intended Audience :: Developers
"
,
"
License :: OSI Approved :: BSD License
"
,
"
Natural Language :: English
"
,
"
Programming Language :: Python
"
,
"
Programming Language :: Python :: 3
"
,
"
Topic :: Software Development :: Libraries :: Python Modules
"
,
],
)
Loading