Skip to content

Commit

Permalink
chore: production version release (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day authored Apr 1, 2022
1 parent 049e155 commit 7e8aa7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ print(contract.name)

## Development

This project is in development and should be considered a beta.
Things might not be in their final state and breaking changes may occur.
Please see the [contributing guide](CONTRIBUTING.md) to learn more how to contribute to this project.
Comments, questions, criticisms and pull requests are welcomed.

## License
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@
],
"lint": [
"black>=22.3.0,<23.0", # auto-formatter and linter
"mypy>=0.910,<1.0", # Static type analyzer
"mypy>=0.941,<1.0", # Static type analyzer
"types-PyYAML", # NOTE: Needed due to mypy typeshed
"types-requests", # NOTE: Needed due to mypy typeshed
"flake8>=3.9.2,<4.0", # Style linter
"flake8-breakpoint>=1.1.0,<2.0.0", # detect breakpoints left in code
"flake8-print>=4.0.0,<5.0.0", # detect print statements left in code
"isort>=5.9.3,<6.0", # Import sorting linter
"isort>=5.10.1,<6.0", # Import sorting linter
],
"release": [ # `release` GitHub Action job uses this
"setuptools", # Installation tool
"wheel", # Packaging tool
"twine", # Package upload tool
],
"dev": [
"commitizen", # Manage commits and publishing releases
"commitizen>=2.19,<2.20", # Manage commits and publishing releases
"pre-commit", # Ensure that linters are run prior to committing
"pytest-watch", # `ptw` test watcher/runner
"IPython", # Console for interacting
Expand Down Expand Up @@ -65,7 +65,7 @@
"hexbytes>=0.2.2,<0.3",
"pydantic>=1.8.2,<2.0.0",
],
python_requires=">=3.7,<4",
python_requires=">=3.7.2,<3.11",
extras_require=extras_require,
py_modules=["ethpm_types"],
license="Apache-2.0",
Expand All @@ -74,7 +74,7 @@
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"ethpm_types": ["py.typed"]},
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
Expand Down

0 comments on commit 7e8aa7d

Please sign in to comment.