Skip to content

Commit

Permalink
fix: exclude tests folder from setup.py (#30)
Browse files Browse the repository at this point in the history
* fix: exclude tests folder from setup.py

* fix: typo
  • Loading branch information
BobTheBuidler committed May 23, 2024
1 parent c529ae2 commit 14a8996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# type: ignore

from setuptools import find_packages, setup
from setuptools import setup

setup(
name='eth_retry',
packages=find_packages(),
packages=["eth_retry"],
use_scm_version={
"root": ".",
"relative_to": __file__,
Expand Down

0 comments on commit 14a8996

Please sign in to comment.