#311 Use `setuptools-markdown`
This commit is contained in:
parent
368be788d7
commit
63e62fcba3
|
|
@ -309,5 +309,12 @@ Run unit and functional tests (requires docker):
|
||||||
FUNCTIONAL=true py.test
|
FUNCTIONAL=true py.test
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For sending package to pypi:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt-get install pandoc
|
||||||
|
./release.py
|
||||||
|
```
|
||||||
|
|
||||||
## License MIT
|
## License MIT
|
||||||
Project License can be found [here](LICENSE.md).
|
Project License can be found [here](LICENSE.md).
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,2 @@
|
||||||
[bdist_wheel]
|
[bdist_wheel]
|
||||||
universal = 1
|
universal = 1
|
||||||
[metadata]
|
|
||||||
description-file = README.md
|
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -26,6 +26,8 @@ setup(name='thefuck',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
packages=find_packages(exclude=['ez_setup', 'examples',
|
packages=find_packages(exclude=['ez_setup', 'examples',
|
||||||
'tests', 'release']),
|
'tests', 'release']),
|
||||||
|
setup_requires=['setuptools-markdown'],
|
||||||
|
long_description_markdown_filename='README.md',
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue