-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (45 loc) · 1.8 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
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, dist
dist.Distribution(dict(setup_requires=['bob.extension']))
from bob.extension.utils import find_packages
from bob.extension.utils import load_requirements
install_requires = load_requirements()
setup(
name='bob.paper.wifs2021_biohashing_sota_face',
version=open("version.txt").read().rstrip(),
description='New package',
url='https://gitlab.idiap.ch/bob/bob.paper.wifs2021_biohashing_sota_face',
license='GPLv3',
# there may be multiple authors (separate entries by comma)
author='Hatef OTROSHI',
author_email='[email protected]',
# there may be a maintainer apart from the author - you decide
#maintainer='?',
#maintainer_email='[email protected]',
# you may add more keywords separating those by commas (a, b, c, ...)
keywords = "bob",
long_description=open('README.rst').read(),
# leave this here, it is pretty standard
packages=find_packages(),
include_package_data=True,
zip_safe = False,
install_requires=install_requires,
entry_points={
# add entry points (scripts, bob resources here, if any)
},
# check classifiers, add and remove as you see fit
# full list here: https://pypi.org/classifiers/
# don't remove the Bob framework unless it's not a bob package
classifiers = [
'Framework :: Bob',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)