2015-05-11 14:32:59 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='kittengroomer',
|
2017-10-02 04:45:30 +02:00
|
|
|
version='2.2.0',
|
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.',
|
2017-08-26 02:19:36 +02:00
|
|
|
packages=['kittengroomer'],
|
2016-12-16 23:36:21 +01:00
|
|
|
scripts=[
|
2017-08-11 00:12:30 +02:00
|
|
|
'filecheck/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',
|
|
|
|
],
|
2017-04-10 13:25:51 +02:00
|
|
|
install_requires=['python-magic'],
|
2015-05-11 14:32:59 +02:00
|
|
|
)
|