Skip to content

Commit 269eee3

Browse files
authored
Merge pull request #6 from pazzarpj/bugfix/pypi-metadata
Fix the metadata in pypi.org
2 parents 34a39f9 + f6022a2 commit 269eee3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ def get_dependencies():
5454
author="Ryan Parry-Jones",
5555
author_email="[email protected]",
5656
description="Micropython c stub generator",
57+
long_description=open("README.md").read(),
5758
package_dir={'': 'src'},
5859
packages=find_packages('src'),
59-
url="https://github.com/pazzarpj/ustubby",
60+
url="https://github.com/pazzarpj/micropython-ustubby",
6061
version=get_version(),
6162
python_requires='>=3.6',
6263
dependency_links=[],

src/ustubby/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import types
33
import csv
44

5-
__version__ = "0.1.0"
5+
__version__ = "0.1.1"
66

77

88
def string_template(base_str):

0 commit comments

Comments
 (0)