2015-05-11 14:32:59 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='kittengroomer',
|
2016-05-12 17:35:17 +02:00
|
|
|
version='2.0.2',
|
2015-05-11 14:32:59 +02:00
|
|
|
author='Raphaël Vinot',
|
|
|
|
author_email='raphael.vinot@circl.lu',
|
|
|
|
maintainer='Raphaël Vinot',
|
|
|
|
url='https://github.com/CIRCL/CIRCLean',
|
|
|
|
description='Standalone CIRCLean/KittenGroomer code.',
|
|
|
|
packages=['kittengroomer'],
|
2015-11-06 15:02:13 +01:00
|
|
|
scripts=['bin/generic.py', 'bin/pier9.py', 'bin/specific.py', 'bin/filecheck.py'],
|
2016-01-29 10:51:43 +01:00
|
|
|
include_package_data=True,
|
|
|
|
package_data={'data': ['PDFA_def.ps', 'srgb.icc']},
|
2015-10-26 17:11:36 +01:00
|
|
|
test_suite="tests",
|
2015-05-11 14:32:59 +02:00
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Communications :: File Sharing',
|
|
|
|
'Topic :: Security',
|
|
|
|
],
|
2016-01-29 10:51:43 +01:00
|
|
|
install_requires=['twiggy', 'python-magic'],
|
2015-05-11 14:32:59 +02:00
|
|
|
)
|