Skip to content

Commit

Permalink
🐛 Fix classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
phatblat committed Aug 10, 2018
1 parent a711b23 commit deaf6e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,17 @@ task packagePython(type: ShellExec) {
task uploadTest(type: ShellExec) {
description = "Uploads distribution package to TestPyPI"
group = project.name
dependsOn packagePython
command = "twine upload --repository-url https://test.pypi.org/legacy/ dist/*"
}

/*
* Credentials must be added to ~/.pypirc or command will stall waiting for stdin.
* https://docs.python.org/3/distutils/packageindex.html#pypirc
*/
task upload(type: ShellExec) {
description = "Uploads distribution package to PyPI"
group = project.name
dependsOn packagePython
command = "twine upload dist/*"
}
2 changes: 1 addition & 1 deletion powerline_xcodeversion.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Keywords: powerline status prompt xcode version
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: macOS
Classifier: Operating System :: MacOS
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Terminals
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: macOS",
"Operating System :: MacOS",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Terminals"
Expand Down

0 comments on commit deaf6e0

Please sign in to comment.