-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from iamdefinitelyahuman/solcx
Solcx
- Loading branch information
Showing
16 changed files
with
276 additions
and
763 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,20 +7,20 @@ | |
|
||
|
||
setup( | ||
name='py-solc', | ||
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility. | ||
version='3.2.0', | ||
description="""Python wrapper around the solc binary""", | ||
name='py-solc-x', | ||
version='0.1.0', | ||
description="""Python wrapper around the solc binary with 0.5.x support""", | ||
long_description_markdown_filename='README.md', | ||
author='Piper Merriam', | ||
author_email='[email protected]', | ||
url='https://github.com/ethereum/py-solc', | ||
author='Benjamin 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=['solc'], | ||
py_modules=['solcx'], | ||
setup_requires=['setuptools-markdown'], | ||
python_requires='>=3.4, <4', | ||
install_requires=[ | ||
"semantic_version>=2.6.0", | ||
"requests>=2.9.1" | ||
], | ||
license="MIT", | ||
zip_safe=False, | ||
|
@@ -30,10 +30,9 @@ | |
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6' | ||
], | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.