-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
70 lines (52 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.md') as f:
readme = f.read()
setup(
# Package name
name='pyeer',
# Package version
version='0.5.6',
entry_points={
'console_scripts': [
'geteerinf = pyeer.eer_info:get_eer_info_cmd',
'getcmcinf = pyeer.cmc_info:get_cmc_info',
],
},
include_package_data=True,
package_data={
'pyeer': ['example_files/hist/*.txt', 'example_files/non_hist/*.txt',
'example_files/cmc/*.txt'],
},
# Included packages
packages=find_packages(),
# Package author information
author=u'Manuel Aguado Martínez',
author_email='manuelaguadomtz@gmail.com',
url='https://github.com/manuelaguadomtz/pyeer',
# project_urls={
# 'Project Information': 'https://www.researchgate.net/project/'
# 'Python-package-to-calculate-EER-values'
# '-and-probability-curves',
# 'Source Code': 'https://github.com/manuelaguadomtz/pyeer',
# },
# Package requirements
install_requires=['numpy',
'matplotlib'],
# Package description
description='A python package for biometric and binary classification '
'systems performance evaluation',
long_description=readme,
long_description_content_type='text/markdown',
keywords=['Equal Error Rate', 'False Match Rate', 'ROC', 'DET',
'False Non-Match Rate', 'EER', 'FMR', 'FNMR', 'ZeroFNMR',
'ZeroFMR', 'CMC', 'Biometric Systems'],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
],
)