Skip to content

Commit

Permalink
Setup.py fix for packaged data
Browse files Browse the repository at this point in the history
  • Loading branch information
prashnts committed Oct 2, 2016
1 parent 634ae2f commit faca2a5
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.2.2] - 2016-10-02
### Fixed
- Important fix. Setup.py was missing `include_package_data` flag.


## [0.2.1] - 2016-10-02
### Fixed
- Configuration wasn't being updated. Fixed.


## [0.2.0] - 2016-10-02
### Added
- Helpers funcs: hues.log, hues.error etc.
- Powerline-ish theme!
- Sane, new API.

### Changed
- Added multiple API enhancements. Particularly, enabling shortcut functions.
- Reduced the complexity of the `console` class.
- Configuration is stored in a `.hues.yml` file.


## [0.1.1] - 2016-09-10
### Fixed
- Missing `MANIFEST.in` caused pip builds to fail..
Expand All @@ -30,7 +52,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Project skeleton.


[Unreleased]: https://github.com/prashnts/hues/compare/0.1.0...HEAD
[UNRELEASED]: https://github.com/prashnts/hues/compare/0.2.1...HEAD
[0.2.2]: https://github.com/prashnts/hues/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/prashnts/hues/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/prashnts/hues/compare/0.1.1...0.2.0
[0.1.1]: https://github.com/prashnts/hues/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/prashnts/hues/compare/0.0.1...0.1.0

2 changes: 1 addition & 1 deletion hues/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .huestr import HueString as huestr
from .console import Config, SimpleConsole, PowerlineConsole

__version__ = (0, 2, 1)
__version__ = (0, 2, 2)

conf = Config()

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='color colour terminal text ansi hues unicorns',
keywords='color colour terminal text ansi hues unicorns console',
packages=['hues'],
author='Prashant Sinha',
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=test_requirements,
author_email='[email protected]'
author_email='[email protected]',
include_package_data=True,
)

0 comments on commit faca2a5

Please sign in to comment.