Skip to content

Commit 3f91c94

Browse files
committed
pypi support
1 parent 4fc6be8 commit 3f91c94

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

README.mkd

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ A tool to maintain rolling windows in PostgreSQL.
44

55
[![Build Status](https://travis-ci.org/ahammond/pg_rollingwindow.svg?branch=master)](https://travis-ci.org/ahammond/pg_rollingwindow?branch=master)
66
[![Coverage Status](https://coveralls.io/repos/ahammond/pg_rollingwindow/badge.png?branch=master)](https://coveralls.io/r/ahammond/pg_rollingwindow?branch=master)
7+
[![Latest Version](https://pypip.in/version/pg_rollingwindow/badge.png)](https://pypi.python.org/pypi/pg_rollingwindow/)
78

89
## What do you mean by "Rolling Window"?
910

__init__.py

Whitespace-only changes.

setup.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python
2+
3+
from setuptools import setup
4+
5+
setup(name='pg_rollingwindow',
6+
version='1.0',
7+
description='Manage partition tables in PostgreSQL',
8+
install_requires=['mock', 'patched_unittest', 'psycopg2', 'unittest2'],
9+
author='Andrew Hammond',
10+
author_email='[email protected]',
11+
url='https://github.com/ahammond/pg_rollingwindow',
12+
py_modules=['pg_rollingwindow'],
13+
scripts=['pg_rollingwindow.py'])

0 commit comments

Comments
 (0)