Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
soodoku committed Aug 16, 2023
1 parent da1afb9 commit c9c4748
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()

class PostDevelopCommand(develop):
"""Post-installation for development mode."""
def run(self):
develop.run(self)

class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
install.run(self)

class Tox(TestCommand):
user_options = [("tox-args=", "a", "Arguments to pass to tox")]
Expand Down

0 comments on commit c9c4748

Please sign in to comment.