forked from bioidiap/bob.db.asvspoof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (45 loc) · 1.63 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Pavel Korshunov <[email protected]>
# Wed Nov 25 22:17:22 CEST 2015
# This package iperates under BSD license, see file LICENSE
from setuptools import setup, dist
dist.Distribution(dict(setup_requires=['bob.extension']))
from bob.extension.utils import load_requirements, find_packages
install_requires = load_requirements()
# Define package version
version = open("version.txt").read().rstrip()
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
setup(
name='bob.db.asvspoof',
version=version,
description='ASVspoof Database Access API for Bob',
url='http://gitlab.idiap.ch/bob/bob.db.asvspoof',
license='BSD',
author='Pavel Korshunov',
author_email='[email protected]',
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=install_requires,
entry_points={
# bob database declaration
'bob.db': [
'asvspoof = bob.db.asvspoof.driver:Interface',
],
},
classifiers=[
'Framework :: Bob',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Database :: Front-Ends',
],
)