Skip to content
Snippets Groups Projects
Commit c74590fd authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch '21_put_back_beat_classifier' into 'master'

Add BEAT framework classifier

Closes #21

See merge request !40
parents f173cda3 d09bd7a4
Branches
Tags
1 merge request!40Add BEAT framework classifier
Pipeline #29155 passed
......@@ -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",
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment