parent
cb06fe00d8
commit
550c475bfc
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.5rc1] - 2018.4.28
|
||||
|
||||
### Added
|
||||
|
||||
- `TorrentFileCreator` class and `create_torrent_file` shortcut function for write back data to a torrent file
|
||||
|
@ -67,7 +69,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
- Available on pip.
|
||||
|
||||
[@ltfychrise]: https://github.com/ltfychrise
|
||||
[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.1.4...HEAD
|
||||
[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.1.5rc1...HEAD
|
||||
[0.1.5rc1]: https://github.com/7sDream/torrent_parser/compare/v0.1.4...v0.1.5rc1
|
||||
[0.1.4]: https://github.com/7sDream/torrent_parser/compare/v0.1.3...v0.1.4
|
||||
[0.1.3]: https://github.com/7sDream/torrent_parser/compare/v0.1.2...v0.1.3
|
||||
[0.1.2]: https://github.com/7sDream/torrent_parser/compare/v0.1.1...v0.1.2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Torrent file parser for Python
|
||||
# Torrent file parser and creator for Python
|
||||
|
||||
A simple parser for `.torrent` file.
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -17,7 +17,7 @@ setup(
|
|||
license='MIT',
|
||||
author='7sDream',
|
||||
author_email='7seconddream@gmail.com',
|
||||
description='A .torrent file parser for both Python 2 and 3',
|
||||
description='A .torrent file parser and creator for both Python 2 and 3',
|
||||
install_requires=[],
|
||||
entry_points={
|
||||
'console_scripts': ['pytp=torrent_parser:__main']
|
||||
|
|
|
@ -69,7 +69,7 @@ __all__ = [
|
|||
'TorrentFileParser',
|
||||
]
|
||||
|
||||
__version__ = '0.1.4'
|
||||
__version__ = '0.1.5rc1'
|
||||
|
||||
|
||||
def detect(content):
|
||||
|
|
Loading…
Reference in New Issue