-
Notifications
You must be signed in to change notification settings - Fork 635
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
setup.py with installation and console entry point #54
base: master
Are you sure you want to change the base?
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
There are changes that I don't approve (like changing the name of the classes) |
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] <[email protected]>
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] <[email protected]>
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] <[email protected]>
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] <[email protected]>
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] <[email protected]>
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] <[email protected]>
Bump numpy from 1.17.1 to 1.22.0
This PR contains
setup.py
file 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_toolkit
2. an updated
requirements.txt
file containing the results ofpip freeze
3. 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
.gitignore
file