-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
43 lines (37 loc) · 1.23 KB
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
from importlib.machinery import SourceFileLoader
from setuptools import find_packages, setup
version = SourceFileLoader(
'version', 'mongoengine_plus/version.py'
).load_module()
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='mongoengine-plus',
version=version.__version__,
author='Cuenca',
author_email='dev@cuenca.com',
description='Extras for mongoengine',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cuenca-mx/mongoengine-plus',
packages=find_packages(),
include_package_data=True,
package_data=dict(mongoengine_plus=['py.typed']),
python_requires='>=3.10',
install_requires=[
'mongoengine>=0.29.1',
'dnspython>=2.7.0',
'pymongo>=4.0.0,<5.0.0',
'pymongocrypt>=1.12.2,<2.0.0',
'boto3>=1.34.106,<2.0.0',
'blinker>=1.9.0,<2.0.0',
],
classifiers=[
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)