Skip to content

Commit

Permalink
Specify the package name in setup.py
Browse files Browse the repository at this point in the history
This should fix GitHub's issue with finding dependents for this project.
  • Loading branch information
prkumar committed Jun 5, 2019
1 parent adbb8ee commit 23a55f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def read(filename):
}

metadata = {
"name": "uplink",
"author": "P. Raj Kumar",
"author_email": "raj.pritvi.kumar@gmail.com",
"url": "https://uplink.readthedocs.io/",
Expand Down Expand Up @@ -58,4 +57,4 @@ def read(filename):
metadata = dict(metadata, **about)

if __name__ == "__main__":
setup(**metadata)
setup(name="uplink", **metadata)

0 comments on commit 23a55f3

Please sign in to comment.