Skip to content

Commit

Permalink
add py.typed file
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel committed Mar 17, 2023
1 parent 2eae6c1 commit 35c371d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Empty file added dpath/py.typed
Empty file.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from distutils.core import setup
from setuptools import setup

import dpath.version

Expand All @@ -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.
Expand All @@ -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',
],
)

0 comments on commit 35c371d

Please sign in to comment.