Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to source on pypi homepage #247

Merged
merged 2 commits into from
Aug 27, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ def run(self):
packageless = [x[7:-3] for x in packageless]
packages = find_packages(where="target")

url = 'https://docs.openmicroscopy.org/latest/omero/developers'

sys.path.append("target")
from omero_version import omero_version as ov # noqa

Expand Down Expand Up @@ -198,7 +196,11 @@ def read(fname):
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
author="The Open Microscopy Team",
author_email="ome-devel@lists.openmicroscopy.org.uk",
url=url,
url='https://github.com/ome/omero-py',
project_urls={
'Documentation':
'https://docs.openmicroscopy.org/latest/omero/developers',
manics marked this conversation as resolved.
Show resolved Hide resolved
},
package_dir={"": "target"},
packages=packages,
package_data={
Expand Down