mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
Improve setup metadata (#4458)
* Add relevant Trove classifiers From full list: https://pypi.org/classifiers/ * Add all project URLs * Add keywords Copied from the repo's tags, minus "hacktoberfest" * Add news entry for the change * Use more explicit key for repo URL
This commit is contained in:
parent
48f1262d9b
commit
8c228ef061
2 changed files with 47 additions and 2 deletions
23
news/improved-setup-py-metadata.rst
Normal file
23
news/improved-setup-py-metadata.rst
Normal file
|
@ -0,0 +1,23 @@
|
|||
**Added:**
|
||||
|
||||
* Multiple new metadata fields in ``setup.py``
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
26
setup.py
26
setup.py
|
@ -290,9 +290,31 @@ def main():
|
|||
author="Anthony Scopatz",
|
||||
maintainer="Anthony Scopatz",
|
||||
author_email="scopatz@gmail.com",
|
||||
url="https://github.com/xonsh/xonsh",
|
||||
url="https://xon.sh",
|
||||
platforms="Cross Platform",
|
||||
classifiers=["Programming Language :: Python :: 3"],
|
||||
project_urls={
|
||||
"Changelog": "https://github.com/xonsh/xonsh/blob/main/CHANGELOG.rst",
|
||||
"Repository": "https://github.com/xonsh/xonsh",
|
||||
"Documentation": "https://xon.sh/contents.html",
|
||||
"Issue tracker": "https://github.com/xonsh/xonsh/issues",
|
||||
},
|
||||
classifiers=[
|
||||
"Development Status :: 4 - Beta",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Natural Language :: English",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Topic :: System :: Shells",
|
||||
"Topic :: System :: System Shells",
|
||||
],
|
||||
keywords="python shell cli command-line prompt xonsh",
|
||||
packages=[
|
||||
"xonsh",
|
||||
"xonsh.ply.ply",
|
||||
|
|
Loading…
Add table
Reference in a new issue