Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.web
Commits
dcbd60a3
Commit
dcbd60a3
authored
Apr 11, 2019
by
André Anjos
💬
Browse files
Merge branch '521_put_back_beat_classifier' into 'master'
Add BEAT framework classifier Closes
#521
See merge request
!282
parents
79a465b7
a976fd22
Pipeline
#29157
passed with stages
in 16 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
dcbd60a3
...
...
@@ -27,44 +27,38 @@
from
setuptools
import
setup
,
find_packages
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.web'
,
name
=
"beat.web"
,
version
=
open
(
"version.txt"
).
read
().
rstrip
(),
description
=
'Biometrics Evaluation and Testing Platform (Web Modules)'
,
url
=
'https://gitlab.idiap.ch/beat/beat.web'
,
license
=
'AGPLv3'
,
author
=
'Idiap Research Institute'
,
author_email
=
'beat.support@idiap.ch'
,
long_description
=
open
(
'README.rst'
,
encoding
=
"utf-8"
).
read
(),
description
=
"Biometrics Evaluation and Testing Platform (Web Modules)"
,
url
=
"https://gitlab.idiap.ch/beat/beat.web"
,
license
=
"AGPLv3"
,
author
=
"Idiap Research Institute"
,
author_email
=
"beat.support@idiap.ch"
,
long_description
=
open
(
"README.rst"
,
encoding
=
"utf-8"
).
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
'
),
classifiers
=
[
'
Development Status :: 5 - Production/Stable
'
,
'
License :: OSI Approved :: GNU Affero General Public License v3
'
,
'
Intended Audience :: Education
'
,
'
Intended Audience :: Science/Research
'
,
'
Natural Language :: English
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: JavaScript
'
,
'
Framework :: Django
'
,
install_requires
=
load_requirements
(
"
requirements.txt
"
),
classifiers
=
[
"Framework :: BEAT"
,
"
Development Status :: 5 - Production/Stable
"
,
"
License :: OSI Approved :: GNU Affero General Public License v3
"
,
"
Intended Audience :: Education
"
,
"
Intended Audience :: Science/Research
"
,
"
Natural Language :: English
"
,
"
Programming Language :: Python
"
,
"
Programming Language :: JavaScript
"
,
"
Framework :: Django
"
,
],
entry_points
=
{
'console_scripts'
:
[
'scheduler = beat.web.scripts.scheduler:main'
,
],
},
entry_points
=
{
"console_scripts"
:
[
"scheduler = beat.web.scripts.scheduler:main"
]},
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment