Skip to content

Commit 896a7cf

Browse files
committed
Fix: description must be one line in setup.py
1 parent 74ae0e2 commit 896a7cf

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Local configuration
2-
.env
1+
# Junk
2+
.DS_Store
3+
.tmp
34

45
# Byte-compiled / optimized / DLL files
56
__pycache__/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ def put_file(*, key=None, path_or_data=None, make_public=True,
7474
return signed['url']
7575

7676
return None
77-
```
77+
```

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
author="Alexey Kinëv",
2222
author_email='[email protected]',
2323
url='https://github.com/05bit/python-signa',
24-
description=__doc__,
24+
description=__doc__.strip(),
2525
long_description=__description__,
2626
long_description_content_type='text/markdown',
27-
license='MIT',
27+
license='MIT License',
2828
# zip_safe=False,
2929
packages=find_packages(),
3030
# include_package_data=True,

0 commit comments

Comments
 (0)