-
Notifications
You must be signed in to change notification settings - Fork 206
/
setup.cfg
37 lines (35 loc) · 1.01 KB
/
setup.cfg
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
[metadata]
name = django-mongoengine
description = Django support for MongoDB via MongoEngine
long_description = file:README.rst
long_description_content_type = text/x-rst
license = BSD
author = Ross Lawley
email_email = [email protected]
version = file:VERSION
url = https://github.com/mongoengine/django-mongoengine
download_url = https://github.com/mongoengine/django-mongoengine/tarball/master
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Python Modules
Framework :: Django
[options]
zip_safe = False
install_requires =
Django>=4.2,<4.3
mongoengine>=0.14
include_package_data = True
packages = find:
[options.packages.find]
exclude =
doc
docs
tests
example