-
Notifications
You must be signed in to change notification settings - Fork 105
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 #221 from crytic/dev-pyproject
Replace `setup.py` with `pyproject.toml`
- Loading branch information
Showing
7 changed files
with
76 additions
and
50 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 |
---|---|---|
@@ -1,3 +1,49 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "solc-select" | ||
version = "1.0.4" | ||
dependencies = [ | ||
"pycryptodome>=3.4.6", | ||
"packaging", | ||
] | ||
requires-python = ">= 3.8" | ||
authors = [ | ||
{name = "Trail of Bits", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Trail of Bits", email = "[email protected]"}, | ||
] | ||
description = "Manage multiple Solidity compiler versions." | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
keywords = ["solc", "solidity", "ethereum", "compiler", "version manager"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
"Topic :: Software Development :: Compilers", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/crytic/solc-select" | ||
Repository = "https://github.com/crytic/solc-select.git" | ||
Issues = "https://github.com/crytic/solc-select/issues" | ||
|
||
[project.scripts] | ||
solc-select = "solc_select.__main__:solc_select" | ||
solc = "solc_select.__main__:solc" | ||
|
||
[tool.black] | ||
target-version = ["py38"] | ||
line-length = 100 | ||
|
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
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