-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.cfg
67 lines (60 loc) · 1.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = montydb
version = attr: montydb._version.__version__
description = Monty, Mongo tinified. MongoDB implemented in Python !
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davidlatwe/montydb
author = davidlatwe
author_email = [email protected]
maintainer = davidlatwe
maintainer_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Education
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
Topic :: Database
keywords = monty montydb mongo mongodb pymongo database
project_urls =
Source=https://github.com/davidlatwe/montydb
Tracker=https://github.com/davidlatwe/montydb/issues
[options]
zip_safe = true
packages = find:
include_package_data = true
python_requires = >=3.7
install_requires =
tests_require =
pytest-cov
pymongo
lmdb
mongoengine
[options.packages.find]
exclude =
tests*
[options.entry_points]
[options.package_data]
[options.extras_require]
bson =
pymongo
lmdb =
lmdb
[sdist]
formats = gztar
[bdist_wheel]
universal = true