PyCIRCLean/setup.py

28 lines
818 B
Python
Raw Permalink Normal View History

2015-05-11 14:32:59 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
2015-05-11 14:32:59 +02:00
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.',
packages=['kittengroomer'],
scripts=[
2017-08-11 00:12:30 +02:00
'filecheck/filecheck.py'
],
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',
],
install_requires=['python-magic'],
2015-05-11 14:32:59 +02:00
)