Skip to content

Commit

Permalink
Added setup.py etc
Browse files Browse the repository at this point in the history
  • Loading branch information
samluescher committed Jan 18, 2012
1 parent 2306d8b commit b520b5a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
@@ -0,0 +1,7 @@
AUTHORS AND MAINTAINERS

PACKAGE MAINTAINER:
Samuel Luescher <sam at luescher dot org>

ICON DESIGN:
Saskia Font, at Teambox Technologies S.L. (2009)
5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,5 @@
include AUTHORS
include LICENSE
include README.rst
recursive-include teambox_icons/static *
recursive-exclude * *.pyc
35 changes: 35 additions & 0 deletions setup.py
@@ -0,0 +1,35 @@
# encoding=utf8
import os
from setuptools import setup, find_packages

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

README = read('README.rst')

setup(
name = "django-teambox-icons",
version = "0.1.0",
url = 'http://github.com/philomat/django-teambox-icons',
license = 'GNU Affero',
description = "A free icon set for popular extensions, repackaged for use with Django Media Tree.",
long_description = README,

author = u'Samuel Luescher',
author_email = 'philomat@popkultur.net',

packages = find_packages(),
include_package_data=True,

classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)

print find_packages()

0 comments on commit b520b5a

Please sign in to comment.