-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using the module I was getting this message from mypy: ``` Skipping analyzing "engineering_notation": module is installed, but missing library stubs or py.typed marker ``` While not the biggest issue, I tried my hand at fixing things. This commit represents that attempt.
- Loading branch information
1 parent
bbc9206
commit 442d5b9
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
import os | ||
|
||
__version__ = None | ||
|
@@ -36,7 +37,8 @@ | |
author='Jason R. Jones', | ||
author_email='[email protected]', | ||
url='https://github.com/slightlynybbled/engineering_notation', | ||
packages=find_packages(), | ||
packages=["engineering_notation"], | ||
package_data={"engineering_notation": ["py.typed"]}, | ||
install_requires=requirements, | ||
setup_requires=['flake8', 'pytest'], | ||
license='MIT', | ||
|