-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (34 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (34 loc) · 1.49 KB
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
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup
from codecs import open
from os import path
from mango import __version__
long_description = None
current_path = path.abspath(path.dirname(__file__))
with open(path.join(current_path, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup_info = dict(name='python-mango',
version=__version__,
description='Mango: simple MongoDb wrapper',
long_description=long_description,
author='laminko',
author_email='lminko.lmk@gmail.com',
url='https://laminko.github.io/mango/',
license="MIT",
py_modules=['mango'],
platforms=('Any',),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries'
],
install_requires=['pymongo'])
setup(**setup_info)