Merge pull request #26 from pipermerriam/piper/update-to-native-pypy-markdown-support
switch to native pypy markdown support
This commit is contained in:
commit
81af1b6444
15
setup.py
15
setup.py
|
@ -31,18 +31,24 @@ extras_require = {
|
||||||
}
|
}
|
||||||
|
|
||||||
extras_require['dev'] = (
|
extras_require['dev'] = (
|
||||||
extras_require['dev'] +
|
extras_require['dev'] + # noqa: W504
|
||||||
extras_require['test'] +
|
extras_require['test'] + # noqa: W504
|
||||||
extras_require['lint'] +
|
extras_require['lint'] + # noqa: W504
|
||||||
extras_require['doc']
|
extras_require['doc']
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
with open('./README.md') as readme:
|
||||||
|
long_description = readme.read()
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='<PYPI_NAME>',
|
name='<PYPI_NAME>',
|
||||||
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
|
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
|
||||||
version='0.1.0-alpha.0',
|
version='0.1.0-alpha.0',
|
||||||
description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""",
|
description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""",
|
||||||
long_description_markdown_filename='README.md',
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author='The Ethereum Foundation',
|
author='The Ethereum Foundation',
|
||||||
author_email='snakecharmers@ethereum.org',
|
author_email='snakecharmers@ethereum.org',
|
||||||
url='https://github.com/ethereum/<REPO_NAME>',
|
url='https://github.com/ethereum/<REPO_NAME>',
|
||||||
|
@ -50,7 +56,6 @@ setup(
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"eth-utils>=1,<2",
|
"eth-utils>=1,<2",
|
||||||
],
|
],
|
||||||
setup_requires=['setuptools-markdown'],
|
|
||||||
python_requires='>=3.6, <4',
|
python_requires='>=3.6, <4',
|
||||||
extras_require=extras_require,
|
extras_require=extras_require,
|
||||||
py_modules=['<MODULE_NAME>'],
|
py_modules=['<MODULE_NAME>'],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user