1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00

#311 Use setuptools-markdown

This commit is contained in:
nvbn 2015-07-27 22:23:20 +03:00
parent 368be788d7
commit 63e62fcba3
3 changed files with 9 additions and 2 deletions

View File

@ -309,5 +309,12 @@ Run unit and functional tests (requires docker):
FUNCTIONAL=true py.test
```
For sending package to pypi:
```bash
sudo apt-get install pandoc
./release.py
```
## License MIT
Project License can be found [here](LICENSE.md).

View File

@ -1,4 +1,2 @@
[bdist_wheel]
universal = 1
[metadata]
description-file = README.md

View File

@ -26,6 +26,8 @@ setup(name='thefuck',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples',
'tests', 'release']),
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
include_package_data=True,
zip_safe=False,
install_requires=install_requires,