-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (28 loc) · 1.01 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
# coding: utf-8
import sys
from distutils.core import setup
if sys.version_info[0] == 3:
author_name = 'Álvaro Justen'
else:
author_name = 'Álvaro Justen'.decode('utf-8')
setup(name='mongodict',
version='0.3.1',
author=author_name,
author_email='[email protected]',
url='https://github.com/turicas/mongodict/',
description='MongoDB-backed Python dict-like interface',
py_modules=['mongodict'],
install_requires=['pymongo'],
license='GPL3',
keywords=['key-value', 'database', 'mongodb', 'dictionary'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)