Skip to content

Commit

Permalink
Add back setup.py to get GitHub info on dependents (#399)
Browse files Browse the repository at this point in the history
GitHub only shows packages and repositories that depend on Pooch when
there is a `setup.py` file in the repository. Add one back that just
calls `setup()` so we can access that feature.
  • Loading branch information
leouieda authored Feb 29, 2024
1 parent 5415ec6 commit b14b484
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ exclude .gitignore
exclude .gitattributes
exclude environment.yml
exclude license_notice.py
include pooch/tests/data
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2018 The Pooch Developers.
# Distributed under the terms of the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
#
# This code is part of the Fatiando a Terra project (https://www.fatiando.org)
#
from setuptools import setup

setup()

0 comments on commit b14b484

Please sign in to comment.