Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
install setuptools rust
Browse files Browse the repository at this point in the history
  • Loading branch information
romnn committed Sep 5, 2021
1 parent e20dfcc commit 7323c8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ name = "pypi"
# Formatting
flake8 = "*"
black = "==21.8b0"
isort = "*"
# Testing
tox = "*"
pytest = "*"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
requires = ["setuptools", "setuptools_rust", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
]
coverage_requirements = ["coverage", "codecov"]
docs_requirements = ["sphinx>=2.0", "romnn_sphinx_press_theme", "sphinxemoji"]
formatting_requirements = ["flake8", "black==19.10b0", "isort"]
formatting_requirements = ["flake8", "black==21.8b0"]
build_requirements = ["setuptools", "setuptools_rust", "wheel"]
tool_requirements = [
"m2r",
"twine",
Expand All @@ -48,6 +49,7 @@
dev_requirements = (
requirements
+ test_requirements
+ build_requirements
+ coverage_requirements
+ docs_requirements
+ formatting_requirements
Expand All @@ -72,9 +74,7 @@
"Programming Language :: Python :: 3.8",
],
entry_points={
"console_scripts": [
"grpc_web_proto_compile=grpc_web_proto_compile.cli:main"
]
"console_scripts": ["grpc_web_proto_compile=grpc_web_proto_compile.cli:main"]
},
python_requires=">=3.6",
install_requires=requirements,
Expand Down

0 comments on commit 7323c8c

Please sign in to comment.