-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 909 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 909 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
30
31
32
33
34
import os
from setuptools import setup
# Using vbox, hard links do not work
if os.environ.get('USER','') == 'vagrant':
del os.link
setup(
name='lingo',
version='0.8.3',
description='A simple MongoDB/CouchDB ORM for Python',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Database',
'Topic :: Software Development :: Libraries'
],
keywords='mongo mongodb orm python couchdb',
url='https://github.com/BasementCat/lingo',
author='BasementCat',
author_email='basementcat@basementcat.net',
license='',
packages=['lingo'],
install_requires=['pymongo', 'couchdb', 'python-dateutil', 'pytz'],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False
)