From 17f18db9521338cf9cfbe86bb2251c4dfafd6f1d Mon Sep 17 00:00:00 2001 From: Bjorn Date: Fri, 10 May 2019 11:10:56 +0200 Subject: [PATCH] add templatetags directory to package --- docs/conf.py | 4 ++-- setup.py | 7 +++++-- ttcal/__init__.py | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 67e1241..b468ae8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '1.0.3' +version = '1.0.4' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.0.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 16cb2d0..15620d0 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ from distutils.core import setup, Command from setuptools.command.test import test as TestCommand -version = '1.0.3' +version = '1.0.4' DIRNAME = os.path.dirname(__file__) description = open(os.path.join(DIRNAME, 'README.rst'), 'rb').read() @@ -62,6 +62,9 @@ def run_tests(self): long_description=description, classifiers=[line for line in classifiers.split('\n') if line], cmdclass={'test': PyTest}, - packages=['ttcal'], + packages=[ + 'ttcal', + 'ttcal.templatetags', + ], zip_safe=False, ) diff --git a/ttcal/__init__.py b/ttcal/__init__.py index 8a7d925..924bb45 100644 --- a/ttcal/__init__.py +++ b/ttcal/__init__.py @@ -2,7 +2,7 @@ """Date classes (originally from TikTok). """ -__version__ = '1.0.3' +__version__ = '1.0.4' from .day import Day, Days, Today from .duration import Duration from .calfns import chop, isoweek