-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 908 Bytes
/
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
26
from setuptools import setup
setup(name='log_aggregator',
version='0.50',
description='Create a configurable Tarball of various files in the file system',
author='Thomas Kostas',
url='https://github.com/yotabits/log_aggregator',
author_email='tkostas75@gmail.com',
license='MIT',
packages=['log_aggregator'],
scripts=['bin/log_aggregator'],
install_requires=['pycurl',
'appjar',
'gopher_robot_version',
'pillow',
'tqdm',
'psutil'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
zip_safe=False)