Skip to content

Commit

Permalink
Bump version to 1.0.0, add setup metadata, ignore build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbedrich committed Jul 25, 2018
1 parent ff010b0 commit 6510598
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ __pycache__/
.venv/
.tox/
.pytest_cache/
dist/
dist/
build/
4 changes: 2 additions & 2 deletions CHANGELOG.md
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.
7 changes: 6 additions & 1 deletion setup.py
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',
)

0 comments on commit 6510598

Please sign in to comment.