We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34a39f9 + f6022a2 commit 269eee3Copy full SHA for 269eee3
setup.py
@@ -54,9 +54,10 @@ def get_dependencies():
54
author="Ryan Parry-Jones",
55
author_email="[email protected]",
56
description="Micropython c stub generator",
57
+ long_description=open("README.md").read(),
58
package_dir={'': 'src'},
59
packages=find_packages('src'),
- url="https://github.com/pazzarpj/ustubby",
60
+ url="https://github.com/pazzarpj/micropython-ustubby",
61
version=get_version(),
62
python_requires='>=3.6',
63
dependency_links=[],
src/ustubby/__init__.py
@@ -2,7 +2,7 @@
2
import types
3
import csv
4
5
-__version__ = "0.1.0"
+__version__ = "0.1.1"
6
7
8
def string_template(base_str):
0 commit comments