Skip to content
setup.py 404 B
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' ],
 )