Skip to content

Commit abb76a1

Browse files
authored
Merge pull request #185 from gruebel/add-pytyped
add py.typed file
2 parents 2eae6c1 + 995b7d9 commit abb76a1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

dpath/py.typed

Whitespace-only changes.

dpath/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.1.4"
1+
VERSION = "2.1.5"

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from distutils.core import setup
2+
from setuptools import setup
33

44
import dpath.version
55

@@ -25,6 +25,7 @@
2525
scripts=[],
2626
packages=["dpath"],
2727
data_files=[],
28+
package_data={"dpath": ["py.typed"]},
2829

2930
# Type hints are great.
3031
# Function annotations were added in Python 3.0.
@@ -43,6 +44,11 @@
4344
'License :: OSI Approved :: MIT License',
4445
'Natural Language :: English',
4546
'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',
4651
'Topic :: Software Development :: Libraries :: Python Modules',
52+
'Typing :: Typed',
4753
],
4854
)

0 commit comments

Comments
 (0)