Newer
Older
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup
setup(
name = 'NIST',
version = "0.10.0",
description = 'Python library for manipulating NIST files (Data Format for the Interchange of Fingerprint, Facial & Other Biometric Information)',
author = 'Marco De Donno',
author_email = 'Marco.DeDonno@unil.ch; mdedonno1337@gmail.com',
packages = [
'NIST',
'NIST.traditional',
'NIST.fingerprint'
],
install_requires = [
'future',
'pillow',
],