File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
- VERSION = "2.1.4 "
1
+ VERSION = "2.1.5 "
Original file line number Diff line number Diff line change 1
1
import os
2
- from distutils . core import setup
2
+ from setuptools import setup
3
3
4
4
import dpath .version
5
5
25
25
scripts = [],
26
26
packages = ["dpath" ],
27
27
data_files = [],
28
+ package_data = {"dpath" : ["py.typed" ]},
28
29
29
30
# Type hints are great.
30
31
# Function annotations were added in Python 3.0.
43
44
'License :: OSI Approved :: MIT License' ,
44
45
'Natural Language :: English' ,
45
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' ,
46
51
'Topic :: Software Development :: Libraries :: Python Modules' ,
52
+ 'Typing :: Typed' ,
47
53
],
48
54
)
You can’t perform that action at this time.
0 commit comments