diff --git a/README.md b/README.md new file mode 100644 index 0000000..d5a9bbb --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# PyPI Image Example + +This package does nothing. It is just an example of an image in a README.md file. + +### Test Image + +![sparkles](static/sparkles.png) + +This is the Twitter 1.0 Emoji "[Sparkles](https://emojipedia.org/twitter/twemoji-1.0/sparkles/)". diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e69de29 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..59c3d4d --- /dev/null +++ b/setup.cfg @@ -0,0 +1,18 @@ +[metadata] +name = glasnt-pypi-image-example +version = 0.0.1 +author_email = katie@glasnt.com +description = An example of images in PyPI READMEs +long_description = file: README.md +long_description_content_type = text/markdown +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent +[options] +package_dir = + = src +packages = find: +python_requires = >=3.6 +[options.packages.find] +where = src \ No newline at end of file diff --git a/src/glasnt-pypi-image-example/__init__.py b/src/glasnt-pypi-image-example/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/static/sparkles.png b/static/sparkles.png new file mode 100644 index 0000000..9387dbe Binary files /dev/null and b/static/sparkles.png differ