diff --git a/dpath/py.typed b/dpath/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/dpath/version.py b/dpath/version.py index 5dfae46..b82fac5 100644 --- a/dpath/version.py +++ b/dpath/version.py @@ -1 +1 @@ -VERSION = "2.1.4" +VERSION = "2.1.5" diff --git a/setup.py b/setup.py index a6891d6..d34748e 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import os -from distutils.core import setup +from setuptools import setup import dpath.version @@ -25,6 +25,7 @@ scripts=[], packages=["dpath"], data_files=[], + package_data={"dpath": ["py.typed"]}, # Type hints are great. # Function annotations were added in Python 3.0. @@ -43,6 +44,11 @@ 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Python Modules', + 'Typing :: Typed', ], )