2018-01-25 00:00:28 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import (
|
|
|
|
setup,
|
|
|
|
find_packages,
|
|
|
|
)
|
|
|
|
|
2018-06-04 22:37:52 +00:00
|
|
|
extras_require = {
|
2018-01-25 00:00:28 +00:00
|
|
|
'test': [
|
|
|
|
"pytest==3.3.2",
|
2018-06-04 22:37:38 +00:00
|
|
|
"pytest-xdist",
|
2018-01-25 00:00:28 +00:00
|
|
|
"tox>=2.9.1,<3",
|
|
|
|
],
|
|
|
|
'lint': [
|
|
|
|
"flake8==3.4.1",
|
|
|
|
"isort>=4.2.15,<5",
|
|
|
|
],
|
2018-01-25 00:33:03 +00:00
|
|
|
'doc': [
|
2018-01-25 00:00:28 +00:00
|
|
|
"Sphinx>=1.6.5,<2",
|
|
|
|
"sphinx_rtd_theme>=0.1.9",
|
|
|
|
],
|
|
|
|
'dev': [
|
|
|
|
"bumpversion>=0.5.3,<1",
|
2018-01-30 23:37:40 +00:00
|
|
|
"pytest-watch>=4.1.0,<5",
|
2018-01-25 00:00:28 +00:00
|
|
|
"wheel",
|
2018-06-07 01:35:31 +00:00
|
|
|
"twine",
|
2018-01-30 23:18:59 +00:00
|
|
|
"ipython",
|
2018-01-25 00:00:28 +00:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
extras_require['dev'] = (
|
2018-06-04 22:37:52 +00:00
|
|
|
extras_require['dev'] +
|
|
|
|
extras_require['test'] +
|
|
|
|
extras_require['lint'] +
|
|
|
|
extras_require['doc']
|
2018-01-25 00:00:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
setup(
|
2018-07-12 14:34:31 +00:00
|
|
|
name='vyper-debug',
|
2018-01-25 00:00:28 +00:00
|
|
|
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
|
2018-10-28 13:24:09 +00:00
|
|
|
version='0.1.2beta3',
|
2018-07-12 14:34:31 +00:00
|
|
|
description="""vyper-debug: Easy to use Vyper debugger | vdb""",
|
2018-01-25 00:00:28 +00:00
|
|
|
long_description_markdown_filename='README.md',
|
2018-07-12 16:57:04 +00:00
|
|
|
author='Jacques Wagener',
|
|
|
|
author_email='jacques+pip@dilectum.co.za',
|
2018-07-12 14:34:31 +00:00
|
|
|
url='https://github.com/ethereum/vyper-debug',
|
2018-01-25 00:00:28 +00:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=[
|
2018-11-22 13:01:43 +00:00
|
|
|
"py-evm==0.2.0a33",
|
|
|
|
"eth-tester==0.1.0b33",
|
|
|
|
"vyper==0.1.0b4",
|
|
|
|
"web3==4.8.1"
|
2018-01-25 00:00:28 +00:00
|
|
|
],
|
|
|
|
setup_requires=['setuptools-markdown'],
|
2018-07-12 16:57:04 +00:00
|
|
|
python_requires='>=3.6, <4',
|
2018-01-25 00:00:28 +00:00
|
|
|
extras_require=extras_require,
|
2018-07-12 14:34:31 +00:00
|
|
|
py_modules=['vdb'],
|
2018-01-25 00:00:28 +00:00
|
|
|
license="MIT",
|
|
|
|
zip_safe=False,
|
|
|
|
keywords='ethereum',
|
|
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-02-07 00:04:41 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2018-01-25 00:00:28 +00:00
|
|
|
],
|
2018-07-12 16:57:04 +00:00
|
|
|
scripts=[
|
|
|
|
'bin/vyper-run',
|
|
|
|
]
|
2018-01-25 00:00:28 +00:00
|
|
|
)
|