Skip to content

Commit

Permalink
Merge pull request #46 from iamdefinitelyahuman/v0.8.0
Browse files Browse the repository at this point in the history
v0.8.0
  • Loading branch information
iamdefinitelyahuman authored Feb 19, 2020
2 parents 5fbba46 + 772686a commit deabc98
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 30 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased
----------
0.8.0
-----

- Allow user-specified installation directory via `SOLCX_BINARY_PATH` environment variable
- Include `which` when importing installed versions on OSX

0.7.2
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
black==19.10b0
bumpversion==0.5.3
coveralls==1.9.2
flake8==3.7.9
isort==4.3.21
Expand Down
6 changes: 6 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[bumpversion]
current_version = 0.8.0

[bumpversion:file:setup.py]

[flake8]
max-line-length = 100
ignore = E203,W503
Expand All @@ -8,3 +13,4 @@ include_trailing_comma = True
line_length = 100
multi_line_output = 3
use_parentheses = True

49 changes: 21 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)

from setuptools import find_packages, setup

setup(
name='py-solc-x',
version='0.7.2',
name="py-solc-x",
version="0.8.0",
description="""Python wrapper around the solc binary with 0.5.x and 0.6.x support""",
long_description_markdown_filename='README.md',
author='Ben Hauser (forked from py-solc by Piper Merriam)',
author_email='[email protected]',
url='https://github.com/iamdefinitelyahuman/py-solc-x',
long_description_markdown_filename="README.md",
author="Ben Hauser (forked from py-solc by Piper Merriam)",
author_email="[email protected]",
url="https://github.com/iamdefinitelyahuman/py-solc-x",
include_package_data=True,
py_modules=['solcx'],
setup_requires=['setuptools-markdown'],
python_requires='>=3.4, <4',
install_requires=[
"semantic_version>=2.8.1,<3",
"requests>=2.19.0,<3"
],
py_modules=["solcx"],
setup_requires=["setuptools-markdown"],
python_requires=">=3.4, <4",
install_requires=["semantic_version>=2.8.1,<3", "requests>=2.19.0,<3"],
license="MIT",
zip_safe=False,
keywords='ethereum solidity solc',
keywords="ethereum solidity solc",
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)

0 comments on commit deabc98

Please sign in to comment.