Skip to content

Commit

Permalink
Merge pull request #1 from RichardBarrell/eggify
Browse files Browse the repository at this point in the history
Created a setup.py so that depixel can be installed as an egg, which let...
  • Loading branch information
jerith committed Feb 15, 2012
2 parents c647513 + 1835210 commit 7674f1e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Empty file added depixel/scripts/__init__.py
Empty file.
27 changes: 27 additions & 0 deletions setup.py
@@ -0,0 +1,27 @@
from setuptools import setup, find_packages

version = '0.1'

setup(name='depixel',
version=version,
description='Depixeling tool, based on "Depixelizing Pixel Art"',
long_description=open('README', 'rb').read(),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=["Topic :: Multimedia :: Graphics"],
author='Jeremy Thurgood',
author_email='firxen@gmail.com',
url='https://github.com/jerith/depixel',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'networkx',
'pypng',
'svgwrite',
],
entry_points="""
[console_scripts]
depixel_png = depixel.scripts.depixel_png:main
""",
)

0 comments on commit 7674f1e

Please sign in to comment.