Skip to content

Commit 9bce6c2

Browse files
committed
Ready for version 0.1
1 parent fd11971 commit 9bce6c2

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
CHANGELOG
22
=========
33

4-
0.0.1 - XX mmmmmm 2019
5-
----------------------
4+
0.1.0 - 18 May 2019
5+
-------------------
66

7-
- Initial dump of code
7+
- Initial dump of code.
8+
- Defines the public API for lookups.
9+
- Provides fixed lookup: members are defined at instantiation time and never change.
10+
- Provides singleton lookup: only one member defined at instantiation time and never change.
11+
- Provides empty lookup: a special lookup with nothing in it.

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include *.md LICENSE
2-
include Pipfile.lock
2+
include Pipfile Pipfile.lock
3+
recursive-include tests *.py

Pipfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ pytest = "*"
88
flake8 = "*"
99
mypy = "*"
1010
flake8-mypy = "*"
11+
check-manifest = "*"
1112

1213
[packages]
1314

1415
[scripts]
1516
qa = 'flake8'
1617
tests = 'py.test -x tests'
18+
build = 'python setup.py sdist bdist_wheel'
1719
clean = 'rm -Rf build dist lookups.egg-info .pytest_cache'

Pipfile.lock

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lookups/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__summary__ = 'DCI lookups in Python (inspired by Netbeans Platform Lookups API)'
2121
__uri__ = 'https://github.com/AxelVoitier/lookups'
2222

23-
__version__ = '0.0.1'
23+
__version__ = '0.1.0'
2424

2525
__author__ = 'Axel Voitier'
2626
__email__ = '[email protected]'

0 commit comments

Comments
 (0)