-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
clean up PyPI metadata #1480
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
clean up PyPI metadata #1480
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
include LICENSE.txt | ||
include README.rst | ||
include README.md | ||
include plotlywidget.json | ||
include versioneer.py | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[metadata] | ||
description-file = README.rst | ||
description-file = README.md | ||
license_file = LICENSE.txt | ||
|
||
[bdist_wheel] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ def plotly_js_version(): | |
|
||
|
||
def readme(): | ||
with open('README.rst') as f: | ||
with open('README.md') as f: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is what's on Github by default and is much more up to date than the one on PyPI |
||
return f.read() | ||
|
||
|
||
|
@@ -391,20 +391,23 @@ def run(self): | |
use_2to3=False, | ||
author='Chris P', | ||
author_email='[email protected]', | ||
maintainer='Chris P', | ||
maintainer_email='chris@plot.ly', | ||
maintainer='Jon Mease', | ||
maintainer_email='jon@plot.ly', | ||
url='https://plot.ly/python/', | ||
description="Python plotting library for collaborative, " | ||
"interactive, publication-quality graphs.", | ||
project_urls={"Github": "https://github.com/plotly/plotly.py"}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This just gets a bit more metadata on the PyPI page to show up automatically |
||
description="An open-source, interactive graphing library for Python", | ||
long_description=readme(), | ||
long_description_content_type="text/markdown", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This enables us to use Markdown |
||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we're there! |
||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Scientific/Engineering :: Visualization', | ||
], | ||
license='MIT', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unsure about the impact of this...