-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (29 loc) · 1023 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
33
from setuptools import setup, find_packages
DESCRIPTION = "Extra fields and utilities for mongoengine."
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
LONG_DESCRIPTION = DESCRIPTION
setup(name='mongoengine-extras',
version='0.0.1',
packages=find_packages(),
author='Ben Lopatin',
author_email='[email protected]',
url='https://github.com/bennylope/mongoengine-extras',
license='Public Domain',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['mongoengine'],
test_suite='tests',
)