Skip to content

Commit

Permalink
switch to native pypy markdown support
Browse files Browse the repository at this point in the history
  • Loading branch information
pipermerriam committed May 1, 2019
1 parent 720b2cf commit 84d2b22
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,31 @@
}

extras_require['dev'] = (
extras_require['dev'] +
extras_require['test'] +
extras_require['lint'] +
extras_require['dev'] + # noqa: W504
extras_require['test'] + # noqa: W504
extras_require['lint'] + # noqa: W504
extras_require['doc']
)


with open('./README.md') as readme:
long_description = readme.read()


setup(
name='<PYPI_NAME>',
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
version='0.1.0-alpha.0',
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_email='[email protected]',
url='https://github.com/ethereum/<REPO_NAME>',
include_package_data=True,
install_requires=[
"eth-utils>=1,<2",
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.6, <4',
extras_require=extras_require,
py_modules=['<MODULE_NAME>'],
Expand Down

0 comments on commit 84d2b22

Please sign in to comment.