Skip to content

Commit

Permalink
Merge branch 'master' of github.com:alisaifee/pyutrack
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Sep 9, 2017
2 parents 5d5d2ae + efd62af commit 22b259e
Show file tree
Hide file tree
Showing 10 changed files with 2,378 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pyutrack/_version.py export-subst
12 changes: 7 additions & 5 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
=======
History
=======
.. :changelog:
0.1.0 (2017-08-03)
------------------
Changelog
=========

0.4.0 2017-09-06
----------------
* First release on PyPI.


10 changes: 10 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
include README.rst
include LICENSE.txt
include HISTORY.rst
include CONTRIBUTIONS.rst
include CLASSIFIERS
include versioneer.py
recursive-include requirements *.txt
recursive-include doc/source *
recursive-include doc *.py Make*
include pyutrack/_version.py
5 changes: 4 additions & 1 deletion pyutrack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

__author__ = """Ali-Akber Saifee"""
__email__ = 'ali@indydevs.org'
__version__ = '0.1.0'

from pyutrack.connection import Connection, Credentials
from pyutrack.resources import *

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

0 comments on commit 22b259e

Please sign in to comment.