Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit cb70492

Browse files
Fix description on PyPI, properly this time
Apparently whatever instructions I was following don't work with `twine`; this does. Note that the markdown will only work on new-PyPI, because old-PyPI doesn't support it; it doesn't seem worthwhile to rewrite the README to avoid this. Test plan: uploaded to https://test.pypi.org/project/slicker/ where it looks pretty Auditors: csilvers
1 parent 35f200c commit cb70492

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ special cases.
118118

119119
### 0.9.2
120120

121+
- Fix description on PyPI, again
122+
123+
### 0.9.2
124+
121125
- Fix description on PyPI
122126

123127
### 0.9.1

setup.cfg

-2
This file was deleted.

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
from setuptools import setup
44

5+
with open("README.md") as f:
6+
long_description = f.read()
7+
58
setup(
69
name='slicker',
7-
version='0.9.2',
10+
version='0.9.3',
811
description='A tool for moving python files.',
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
914
author='Khan Academy',
1015
author_email='[email protected]',
1116
url='https://github.com/Khan/slicker',

0 commit comments

Comments
 (0)