setup.py with installation and console entry point#54
Open
monocongo wants to merge 24 commits intoEscVM:masterfrom
Open
setup.py with installation and console entry point#54monocongo wants to merge 24 commits intoEscVM:masterfrom
monocongo wants to merge 24 commits intoEscVM:masterfrom
Conversation
…nts.txt` after installing the package via `python setup.py install` EscVM#52
…ich was causing a device error on Linux laptop when calling the download() function from another Python script
…ngs_for_numba Updates for using the downloader outside of the CLI context
Collaborator
|
There are changes that I don't approve (like changing the name of the classes) |
Open
Author
|
The package name should be something more specific than "modules", i.e., something that identifies the package so when you import modules from it then it's obvious what package you're importing from. At least that's how every other serious package does it anyway. For example, if you import OpenCV you use |
Bumps [rsa](https://github.com/sybrenstuvel/python-rsa) from 3.4.2 to 4.1. - [Release notes](https://github.com/sybrenstuvel/python-rsa/releases) - [Changelog](https://github.com/sybrenstuvel/python-rsa/blob/main/CHANGELOG.md) - [Commits](sybrenstuvel/python-rsa@version-3.4.2...version-4.1) Signed-off-by: dependabot[bot] <support@github.com>
Bump rsa from 3.4.2 to 4.1
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1.2 to 5.4. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](yaml/pyyaml@5.1.2...5.4) Signed-off-by: dependabot[bot] <support@github.com>
Bump pyyaml from 5.1.2 to 5.4
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.3 to 1.25.8. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.25.3...1.25.8) Signed-off-by: dependabot[bot] <support@github.com>
Bump urllib3 from 1.25.3 to 1.25.8
Bumps [rsa](https://github.com/sybrenstuvel/python-rsa) from 4.1 to 4.7. - [Release notes](https://github.com/sybrenstuvel/python-rsa/releases) - [Changelog](https://github.com/sybrenstuvel/python-rsa/blob/main/CHANGELOG.md) - [Commits](sybrenstuvel/python-rsa@version-4.1...version-4.7) Signed-off-by: dependabot[bot] <support@github.com>
Bump rsa from 4.1 to 4.7
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.8 to 1.26.5. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.25.8...1.26.5) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bump urllib3 from 1.25.8 to 1.26.5
Bumps [numpy](https://github.com/numpy/numpy) from 1.17.1 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/HOWTO_RELEASE.rst) - [Commits](numpy/numpy@v1.17.1...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bump numpy from 1.17.1 to 1.22.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains
setup.pyfile that allows for installation of this package into a Python (virtual) environment via the command:This setup file also includes a console script entry point named
oidv4_toolkit2. an updated
requirements.txtfile containing the results ofpip freeze3. various cleanups (formatting, removal of unused imports, etc.) for better PEP8 compliance
4. package can now be registered and uploaded to PyPI using method outlined in the initial comment for issue #52
5. valid
.gitignorefile