mirror of https://github.com/CIRCL/PyCIRCLean
30 lines
1005 B
Python
30 lines
1005 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='kittengroomer',
|
|
version='2.0.2',
|
|
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'],
|
|
scripts=['bin/generic.py', 'bin/pier9.py', 'bin/specific.py', 'bin/filecheck.py'],
|
|
include_package_data=True,
|
|
package_data={'data': ['PDFA_def.ps', 'srgb.icc']},
|
|
test_suite="tests",
|
|
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',
|
|
],
|
|
install_requires=['twiggy', 'python-magic'],
|
|
)
|