Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lazy connections #2

Merged
merged 2 commits into from Aug 5, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Made version a property of the actual module.

Updated setup.py to use this version property so there is only one
source of truth.
  • Loading branch information
Scott Griffin
Scott Griffin committed May 13, 2015
commit d0bd7de7ef82d76bfa9333a2fc3a0ef36b796f28
@@ -0,0 +1 @@
__version__ = '1.0.1'
@@ -1,16 +1,16 @@
"""
" Copyright: Loggly
" Author: Scott Griffin
" Last Updated: 01/14/2013
"
"""
from setuptools import setup
from muskrat import __version__

setup(
name='Muskrat',
author='Scott Griffin',
author_email='scott@loggly.com',
version='0.1dev',
version=__version__,
packages=['muskrat', 'muskrat.tests'],
long_description=open( 'README.md' ).read(),
install_requires=open( 'requirements.txt' ).read().split()
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.