Skip to content

Commit

Permalink
(#19) fix find_packages gfdi
Browse files Browse the repository at this point in the history
  • Loading branch information
corydodt committed Feb 26, 2020
1 parent 197dcd4 commit b005d2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ Make sure to:

## Change Log

### [0.7.5] - 2020.02.26
### [0.7.6] - 2020.02.26
#### Changed:
- The version of mock is no longer strictly specified, allowing higher versions to be used while this package is installed
- Fix find_packages usage in setup.py

### [0.7.4] - 2019.11.26
#### Added:
Expand Down Expand Up @@ -96,7 +97,7 @@ Make sure to:
- 0.4: Initial public usable release

[Crosscap]: https://github.com/corydodt/Crosscap
[0.7.5]: https://github.com/corydodt/Codado/compare/release-0.7.4...release-0.7.5
[0.7.6]: https://github.com/corydodt/Codado/compare/release-0.7.4...release-0.7.6
[0.7.4]: https://github.com/corydodt/Codado/compare/release-0.7.2...release-0.7.4
[0.7.2]: https://github.com/corydodt/Codado/compare/release-0.7.0...release-0.7.2
[0.7.0]: https://github.com/corydodt/Codado/compare/release-0.6.1...release-0.7.0
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from inspect import cleandoc

from setuptools import setup
from setuptools import setup, find_packages


__version__ = '0.7.5'
__version__ = '0.7.6'


cfg = dict(
name = 'Codado',
packages = ['codado'],
packages = find_packages('.', include=['codado', 'codado.*']),
version = __version__,
description = 'A collection of system development utilities',
author = 'Cory Dodt',
Expand Down

0 comments on commit b005d2a

Please sign in to comment.