@@ -137,43 +137,26 @@ def build_extension(self, ext):
137
137
ext_modules = []
138
138
139
139
140
- dependencies = [
141
- "dnspython>=1.16.0,<3.0.0" ,
142
- ]
140
+ def parse_reqs_file (fname ):
141
+ with open (fname ) as fid :
142
+ lines = [li .strip () for li in fid .readlines ()]
143
+ return [li for li in lines if li and not li .startswith ("#" )]
144
+
145
+
146
+ dependencies = parse_reqs_file ("requirements.txt" )
143
147
144
148
extras_require = dict (
145
- aws = [
146
- "pymongo-auth-aws>=1.1.0,<2.0.0" ,
147
- ],
148
- encryption = [
149
- "pymongo[aws]" ,
150
- "pymongocrypt>=1.6.0,<2.0.0" ,
151
- "certifi;os.name=='nt' or sys_platform=='darwin'" ,
152
- ],
153
- gssapi = ["pykerberos;os.name!='nt'" , "winkerberos>=0.5.0;os.name=='nt'" ],
154
- # PyOpenSSL 17.0.0 introduced support for OCSP. 17.1.0 introduced
155
- # a related feature we need. 17.2.0 fixes a bug
156
- # in set_default_verify_paths we should really avoid.
157
- # service_identity 18.1.0 introduced support for IP addr matching.
158
- # Fallback to certifi on Windows if we can't load CA certs from the system
159
- # store and just use certifi on macOS.
160
- # https://www.pyopenssl.org/en/stable/api/ssl.html#OpenSSL.SSL.Context.set_default_verify_paths
161
- ocsp = [
162
- "certifi;os.name=='nt' or sys_platform=='darwin'" ,
163
- "pyopenssl>=17.2.0" ,
164
- "requests<3.0.0" ,
165
- "cryptography>=2.5" ,
166
- "service_identity>=18.1.0" ,
167
- ],
168
- snappy = ["python-snappy" ],
149
+ aws = parse_reqs_file ("requirements/aws.txt" ),
150
+ encryption = parse_reqs_file ("requirements/encryption.txt" ),
151
+ gssapi = parse_reqs_file ("requirements/gssapi.txt" ),
152
+ ocsp = parse_reqs_file ("requirements/ocsp.txt" ),
153
+ snappy = parse_reqs_file ("requirements/snappy.txt" ),
169
154
# PYTHON-3423 Removed in 4.3 but kept here to avoid pip warnings.
170
155
srv = [],
171
156
tls = [],
172
157
# PYTHON-2133 Removed in 4.0 but kept here to avoid pip warnings.
173
- zstd = [
174
- "zstandard" ,
175
- ],
176
- test = ["pytest>=7" ],
158
+ zstd = parse_reqs_file ("requirements/zstd.txt" ),
159
+ test = parse_reqs_file ("requirements/test.txt" ),
177
160
)
178
161
179
162
setup (
0 commit comments