Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoerner committed Aug 6, 2011
0 parents commit 352259a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.pyc
/dist
/timak.egg-info
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2011 Brett Hoerner

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timak
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from setuptools import setup, find_packages

setup(name='timak',
version=".".join(map(str, __import__("timak").__version__)),
description='Timelines in by Riak',
author='Brett Hoerner',
author_email='brett@bretthoerner.com',
url='http://github.com/bretthoerner/timak',
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
license="Apache License (2.0)",
)
1 change: 1 addition & 0 deletions timak/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = (0, 0, 0)

0 comments on commit 352259a

Please sign in to comment.