We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eae6c1 commit 35c371dCopy full SHA for 35c371d
dpath/py.typed
setup.py
@@ -1,5 +1,5 @@
1
import os
2
-from distutils.core import setup
+from setuptools import setup
3
4
import dpath.version
5
@@ -25,6 +25,7 @@
25
scripts=[],
26
packages=["dpath"],
27
data_files=[],
28
+ package_data={"dpath": ["py.typed"]},
29
30
# Type hints are great.
31
# Function annotations were added in Python 3.0.
@@ -43,6 +44,11 @@
43
44
'License :: OSI Approved :: MIT License',
45
'Natural Language :: English',
46
'Programming Language :: Python :: 3',
47
+ 'Programming Language :: Python :: 3.7',
48
+ 'Programming Language :: Python :: 3.8',
49
+ 'Programming Language :: Python :: 3.9',
50
+ 'Programming Language :: Python :: 3.10',
51
'Topic :: Software Development :: Libraries :: Python Modules',
52
+ 'Typing :: Typed',
53
],
54
)
0 commit comments