Skip to content

Commit

Permalink
packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gleicon committed May 16, 2012
1 parent d35a220 commit 1d9fa89
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1 +1,4 @@
*.pyc
build
dist
pymetrics.egg-info
File renamed without changes.
23 changes: 23 additions & 0 deletions setup.py
@@ -0,0 +1,23 @@
import sys, os, os.path, subprocess
from setuptools.command import easy_install
import pkg_resources as pkgrsrc

from setuptools import setup
from distutils import log
log.set_threshold(log.INFO)

setup(
name = "pymetrics",
version = "0.1",

packages = ['pymetrics'],
install_requires = ['redis>=2.4.10'],

# metadata for upload to PyPI
author = "Gleicon Moraes",
author_email = "gleicon@gmail.com",
keywords = "metrics redis",
description = "simple python metrics",
url = "https://github.com/gleicon/pymetrics",
)

File renamed without changes.

0 comments on commit 1d9fa89

Please sign in to comment.