-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 1.0.0, add setup metadata, ignore build dir
- Loading branch information
1 parent
ff010b0
commit 6510598
Showing
3 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ __pycache__/ | |
.venv/ | ||
.tox/ | ||
.pytest_cache/ | ||
dist/ | ||
dist/ | ||
build/ |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# v0.0.1 | ||
# v1.0.0 | ||
|
||
Initial release. | ||
Initial public release. |
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 |
---|---|---|
@@ -1,11 +1,16 @@ | ||
from pathlib import Path | ||
|
||
from setuptools import setup | ||
|
||
setup( | ||
name='llconfig', | ||
version='0.0.1', | ||
version='1.0.0', | ||
packages=['llconfig'], | ||
license='MIT', | ||
author='Heureka.cz', | ||
author_email='[email protected]', | ||
description='Lightweight layered configuration library.', | ||
long_description=Path(__file__).with_name('README.md').read_text(encoding='utf-8'), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/heureka/llconfig', | ||
) |