forked from puentesarrin/mongodb-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 862 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 862 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
27
28
29
# -*- coding: utf-8 *-*
try:
from setuptools import setup
except ImportError:
from distutils import setup
long_description = open("README.rst").read()
setup(
name='mongolog',
version='0.1.1',
description='Centralized logging made simple using MongoDB',
long_description=long_description,
author='Andrei Savu',
author_email='contact@andreisavu.ro',
maintainer='Jorge Puente Sarrín',
maintainer_email="puentesarrin@gmail.com",
url='https://github.com/puentesarrin/mongodb-log',
packages=['mongolog'],
keywords=["mongolog", "logging", "mongo", "mongodb"],
install_requires=['pymongo'],
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Logging",
"Topic :: Database"],
)