Skip to content

Commit

Permalink
Change package name to something available
Browse files Browse the repository at this point in the history
  • Loading branch information
fwhigh committed May 14, 2021
1 parent b708145 commit de504af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ python examples/model-tournament/train.py
## Release procedure

1. Bump VERSION in setup.py. This should contain the new version without the v
1. `git commit -a -m "Release v0.0.2"`
1. Run `git tag -a v0.0.2 -m "Release v0.0.2"` with matching version number
1. Run `git commit -a -m "Release v0.0.1"`
1. Run `git tag -a v0.0.1 -m "Release v0.0.1"` with matching version number
1. Optional: run `make package`
1. Run `git push origin v0.0.2`
1. Run `git push origin v0.0.1`
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
import pkg_resources

# Package meta-data.
NAME = 'metalearn'
NAME = 'metaflow-helper'
DESCRIPTION = 'Convenience utilities for common machine learning tasks on Metaflow'
URL = 'https://github.com/fwhigh/metalearn'
URL = 'https://github.com/fwhigh/metaflow-helper'
EMAIL = '[email protected]'
AUTHOR = 'F. William High'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = '0.0.2'
VERSION = '0.0.1'
LICENSE = 'Apache-2.0'

here = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -84,7 +84,9 @@ def run(self):
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
keywords='circleci ci cd api sdk',
Expand Down

0 comments on commit de504af

Please sign in to comment.