Skip to content

Commit

Permalink
Bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Nov 12, 2017
1 parent d697740 commit e4dd5bc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Expand Up @@ -19,6 +19,11 @@
with io.open("README.rst", encoding=ENCODING) as f:
LONG_DESCRIPTION = f.read()

with io.open(
os.path.join("docs", "pages", "introduction", "summary.txt"),
encoding=ENCODING) as f:
SUMMARY = f.read()

with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
INSTALL_REQUIRES = [line.strip() for line in f if line.strip()]

Expand All @@ -38,12 +43,12 @@

setuptools.setup(
name=MODULE_NAME,
version="0.0.1",
version="0.0.2",
url="https://github.com/thombashi/{:s}".format(MODULE_NAME),

author="Tsuyoshi Hombashi",
author_email="tsuyoshi.hombashi@gmail.com",
description="DESCRIPTION",
description=SUMMARY,
include_package_data=True,
keywords=[""],
license="MIT License",
Expand Down

0 comments on commit e4dd5bc

Please sign in to comment.