forked from alex2/django_logtail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 789 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 789 Bytes
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
import sys, os
from setuptools import setup, find_packages
version = '0.2.1dev'
long_description = open('README.rst').read() + '\n\n' + \
open('CHANGES.rst').read()
setup(
name='django_logtail',
version=version,
description='A log viewing and tailing utility accessible via a Django ' \
'admin panel',
long_description=long_description,
keywords='django admin logfile viewer tail log',
author='Alex Holmes',
author_email='alex.holmes@isotoma.com',
url='https://github.com/alex2/django_logtail',
license='The MIT License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Django',
],
)