Skip to content

Commit

Permalink
Merge branch 'main' into glob-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum authored Jun 25, 2024
2 parents 08860cc + d24eb87 commit 08e4ed5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from setuptools import setup
from setuptools.command.test import test as TestCommand

project_dir = os.path.abspath(os.path.dirname(__file__))

if {"register", "upload"}.intersection(set(sys.argv)):
print(
" ***** WARNING *****\n"
Expand Down Expand Up @@ -39,6 +41,9 @@
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "requirements.txt")) as f:
install_requires = f.readlines()

with open(os.path.join(project_dir, "README.rst")) as fh:
long_description = fh.read()


class Tox(TestCommand):
"""http://bit.ly/1T0dwvG"""
Expand Down Expand Up @@ -71,6 +76,7 @@ def run_tests(self):
name="scriptworker",
version=VERSION,
description="TaskCluster Script Worker",
long_description=long_description,
author="Mozilla Release Engineering",
author_email="[email protected]",
url="https://github.com/mozilla-releng/scriptworker",
Expand Down

0 comments on commit 08e4ed5

Please sign in to comment.