aletk 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aletk
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: License :: OSI Approved :: MIT License
6
6
  Classifier: Operating System :: OS Independent
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aletk
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: License :: OSI Approved :: MIT License
6
6
  Classifier: Operating System :: OS Independent
@@ -4,6 +4,7 @@ setup.py
4
4
  aletk/ResultMonad.py
5
5
  aletk/__init__.py
6
6
  aletk/adapters.py
7
+ aletk/py.typed
7
8
  aletk/utils.py
8
9
  aletk.egg-info/PKG-INFO
9
10
  aletk.egg-info/SOURCES.txt
@@ -2,13 +2,16 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name = "aletk",
5
- version = "0.1.0",
5
+ version = "0.1.1",
6
6
  packages = find_packages(
7
7
  exclude = [
8
8
  'prototypes',
9
9
  'tests',
10
10
  ]
11
11
  ),
12
+ package_data = {
13
+ 'aletk': ['py.typed'],
14
+ },
12
15
  install_requires = [
13
16
  'fuzzywuzzy',
14
17
  'python-Levenshtein', # to improve performance of fuzzywuzzy
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes