-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
setup(name='cmdint',
version='3.0.6',
description='Enables detailed logging of command line calls in a very lightweight manner.',
long_description='CmdInterface enables detailed logging of command line and python experiments in a very lightweight manner (coding wise). It wraps your command line or python function calls in a few lines of code and logs everything you might need to reproduce the experiment later on or to simply check what you did a couple of years ago.',
url='https://github.com/MIC-DKFZ/cmdint/',
author='Peter F. Neher',
author_email='[email protected]',
license='Apache 2.0',
packages=['cmdint'],
install_requires=[
'xmltodict',
'chardet',
'psutil',
'python-telegram-bot',
'slackclient',
'GitPython'
],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable'
], )