Skip to content

Commit

Permalink
将setup.py移到根目录下。
Browse files Browse the repository at this point in the history
  • Loading branch information
oldj committed Sep 5, 2012
1 parent 467af89 commit 509e651
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -33,4 +33,7 @@ pip-log.txt
.idea/inspectionProfiles/Project_Default.xml

pyheatmap/*.png
pyheatmap/build
pyheatmap/env

*.iml
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion pyheatmap/HeatMap.py → pyheatmap/pyheatmap.py
Expand Up @@ -15,8 +15,9 @@
import os
import Image
import ImageDraw2
from libs import cf
from inc import cf

VERSION = __import__("__init__").__version__

class HeatMap(object):

Expand Down
7 changes: 4 additions & 3 deletions pyheatmap/setup.py → setup.py
Expand Up @@ -4,11 +4,12 @@

setup(
name="pyheatmap",
version=__import__("__init__").__version__,
packages=[""],
version=__import__("pyheatmap.__init__").__version__,
packages=["pyheatmap"],
url="https://github.com/oldj/pyheatmap",
license="LGPL",
author="oldj",
author_email="oldj.wu@gmail.com",
description="Create heatmap by Python."
description="Create heatmap by Python.",
requires=["PIL"]
)

0 comments on commit 509e651

Please sign in to comment.