-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.25 KB
/
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
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='[email protected]',
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.9',
install_requires=[
'mongoengine>=0.29.1',
'dnspython>=2.7.0',
'pymongo>=3.13.0,<4.0.0',
'pymongocrypt>=1.12.2,<2.0.0',
'boto3>=1.34.106,<1.35.96',
],
classifiers=[
'Programming Language :: Python :: 3.9',
'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',
],
)