forked from andreisavu/mongodb-log
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
32 lines (29 loc) · 983 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
27
28
29
30
31
32
# -*- 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.2',
description='Centralized logging made simple using MongoDB',
long_description=long_description,
author='Andrei Savu',
author_email='[email protected]',
maintainer='Jorge Puente Sarrín',
maintainer_email="[email protected]",
url='https://github.com/puentesarrin/mongodb-log',
packages=['mongolog'],
keywords=["mongolog", "logging", "mongo", "mongodb"],
install_requires=['pymongo'],
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Logging",
"Topic :: Database",
]
)