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'],
|
2016-12-16 23:36:21 +01:00
|
|
|
scripts=[
|
2016-12-20 21:16:58 +01:00
|
|
|
'bin/filecheck.py'
|
2016-12-16 23:36:21 +01:00
|
|
|
],
|
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 :: 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
|
|
|
)
|