Skip to content

Commit 4ee9a87

Browse files
- Modified readme
- Marked package as PEP 561 compatible (py.typed) - Renamed some files
1 parent 1c4fd0d commit 4ee9a87

File tree

12 files changed

+12
-6
lines changed

12 files changed

+12
-6
lines changed

,pyup.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# autogenerated pyup.io config file
22
# see https://pyup.io/docs/configuration/ for all available options
33

4-
schedule: ''
4+
schedule: 'every month'
55
update: false
6+
pin: False

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
include requirements_setup.txt
3+
include src/easyconfig/py.typed
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Packages required to build the documentation
2-
sphinx >= 4.4, < 5
2+
sphinx >= 5.3, < 6
33
sphinx-autodoc-typehints >= 1.17, < 2
44
sphinx_rtd_theme >= 1, < 2

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ sub.cancel()
157157
```
158158

159159
# Changelog
160+
#### 0.2.5 (21.10.2022)
161+
- Marked package as PEP 561 compatible (py.typed)
162+
160163
#### 0.2.4 (19.04.2022)
161164
- Default values get validated, too
162165

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def load_req() -> typing.List[str]:
4949
'GitHub': 'https://github.com/spacemanspiff2007/easyconfig',
5050
},
5151
package_dir={'': 'src'},
52+
package_data={'easyconfig': ["py.typed"]},
5253
packages=find_packages('src', exclude=['tests*']),
5354
install_requires=load_req(),
5455
python_requires='>=3.8',

src/easyconfig/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.4'
1+
__version__ = '0.2.5'

src/easyconfig/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)