We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
py.typed
1 parent 8ec8656 commit 005f956Copy full SHA for 005f956
setup.cfg
@@ -9,8 +9,12 @@ url = https://github.comm/mpi4py/shmem4py
9
author = Lisandro Dalcin
10
author_email = [email protected]
11
12
-setup_requires = cffi>=1.13
13
-install_requires = cffi>=1.13,numpy>=1.12
+[options]
+setup_requires =
14
+ cffi>=1.13
15
+install_requires =
16
17
+ numpy>=1.12
18
python_requires = >=3.7
19
20
setup.py
@@ -34,7 +34,10 @@ def run(self):
34
'shmem4py',
35
],
36
package_data = {
37
- 'shmem4py' : ['api.pyi'],
+ 'shmem4py' : [
38
+ 'api.pyi',
39
+ 'py.typed',
40
+ ],
41
},
42
cffi_modules = [
43
'shmem4py/src/api_build.py:ffibuilder',
shmem4py/py.typed
@@ -0,0 +1 @@
1
+# Marker file for PEP 561.
0 commit comments