-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (36 loc) · 1.08 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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='treelogger4mongo',
version='0.1.1',
description='A logger that logs in a tree structure form in mongo',
author='Jonatan Nilsson',
license='WTFPL-2',
author_email='jonatan@nilsson.is',
url='https://github.com/TheThing/treelogger4mongo',
long_description=open('README.md', 'r').read(),
packages=[
'treelogger4mongo',
],
requires=[
'pymongo',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: System :: Logging',
],
)