-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8de7043
commit 007ca18
Showing
4 changed files
with
116 additions
and
71 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.9] - 2020-11-08 :octocat: | ||
- Completely migrates to GitHub Workflows | ||
- Improves build to test Python 3.6 and 3.9 | ||
- Adds a changelog | ||
- Improves badges |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,33 @@ | |
|
||
|
||
def readme(): | ||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
return f.read() | ||
|
||
|
||
setup(name='rodi', | ||
version='1.0.8', | ||
description='Implementation of dependency injection for Python 3', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Operating System :: OS Independent' | ||
], | ||
url='https://github.com/RobertoPrevato/rodi', | ||
author='RobertoPrevato', | ||
author_email='[email protected]', | ||
keywords='dependency injection type hints typing convention', | ||
license='MIT', | ||
packages=['rodi'], | ||
install_requires=[], | ||
include_package_data=True, | ||
zip_safe=False) | ||
setup( | ||
name="rodi", | ||
version="1.0.9", | ||
description="Implementation of dependency injection for Python 3", | ||
long_description=readme(), | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Operating System :: OS Independent", | ||
], | ||
url="https://github.com/RobertoPrevato/rodi", | ||
author="RobertoPrevato", | ||
author_email="[email protected]", | ||
keywords="dependency injection type hints typing convention", | ||
license="MIT", | ||
packages=["rodi"], | ||
install_requires=[], | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |