Add Poetry config

Add deployment through poetry to travis
This commit is contained in:
Manuel Ebert 2019-07-07 20:41:18 -07:00
parent 1affb9b7b5
commit a61658d453
8 changed files with 549 additions and 141 deletions

View file

@ -1,14 +1,9 @@
#!/usr/bin/env python
# encoding: utf-8
import pkg_resources
"""
jrnl is a simple journal application for your command line.
"""
from __future__ import absolute_import
dist = pkg_resources.get_distribution('jrnl')
__title__ = dist.project_name
__version__ = dist.version
__title__ = 'jrnl'
__version__ = '2.0.0-rc3'
__author__ = 'Manuel Ebert'
__license__ = 'MIT License'
__copyright__ = 'Copyright 2013 - 2015 Manuel Ebert'