-
Notifications
You must be signed in to change notification settings - Fork 10
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/v1
v1.0.0
- Loading branch information
Showing
20 changed files
with
602 additions
and
774 deletions.
There are no files selected for viewing
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,3 +7,5 @@ build/ | |
dist/ | ||
*.pyc | ||
.coverage | ||
.mypy_cache/ | ||
.tox/ |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: python | ||
dist: xenial | ||
sudo: true | ||
install: | ||
- sudo apt-get update | ||
- pip install -r requirements-dev.txt | ||
matrix: | ||
include: | ||
- name: '3.6' | ||
python: 3.6 | ||
- name: '3.7' | ||
python: 3.7 | ||
after_success: coveralls | ||
script: tox |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Brownie configuration for Black. | ||
|
||
# NOTE: you have to use single-quoted strings in TOML for regular expressions. | ||
# It's the equivalent of r-strings in Python. Multiline strings are treated as | ||
# verbose regular expressions by Black. Use [ ] to denote a significant space | ||
# character. | ||
|
||
[tool.black] | ||
line-length = 100 | ||
target-version = ['py36', 'py37', 'py38'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
/( | ||
\.eggs | ||
| \.git | ||
| \.hg | ||
| \.mypy_cache | ||
| \.tox | ||
| \.venv | ||
| _build | ||
| buck-out | ||
| build | ||
| dist | ||
| env | ||
| venv | ||
)/ | ||
''' |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
black==19.3b0 | ||
coveralls==1.7.0 | ||
isort==4.3.21 | ||
pytest>=5.0.0 | ||
pytest-cov>=2.7.1 | ||
tox-travis==0.12 | ||
twine==1.13.0 | ||
wheel==0.33.4 |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[tool:isort] | ||
force_grid_wrap = 0 | ||
include_trailing_comma = True | ||
line_length = 100 | ||
multi_line_output = 3 | ||
use_parentheses = True |
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 |
---|---|---|
@@ -1,40 +1,35 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
from setuptools import ( | ||
setup, | ||
find_packages, | ||
) | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='py-solc-ast', | ||
version='0.1.4', | ||
name="py-solc-ast", | ||
version="1.0.0", | ||
description="""A tool for exploring the abstrax syntrax tree generated by solc.""", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Ben Hauser', | ||
author_email='[email protected]', | ||
url='https://github.com/iamdefinitelyahuman/py-solc-ast', | ||
author="Ben Hauser", | ||
author_email="[email protected]", | ||
url="https://github.com/iamdefinitelyahuman/py-solc-ast", | ||
include_package_data=True, | ||
py_modules=['solcast'], | ||
py_modules=["solcast"], | ||
setup_requires=[], | ||
python_requires='>=3.5, <4', | ||
install_requires=[ | ||
], | ||
python_requires=">=3.6, <4", | ||
install_requires=[], | ||
license="MIT", | ||
zip_safe=False, | ||
keywords='ethereum solidity solc', | ||
keywords=["ethereum", "solidity", "solc", "ast"], | ||
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', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7' | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
) |
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/python3 | ||
|
||
from .main import ( # noqa 401 | ||
from_standard_output, | ||
from_standard_output_json | ||
) | ||
from .main import from_standard_output, from_standard_output_json # noqa 401 |
Oops, something went wrong.