~jmillikin/+junk/pixra

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from os.path import dirname, join
from setuptools import setup

version = '0.1'

setup (
	name = 'pixra',
	version = version,
	description = "Web application for organizing images by label",
	long_description = open (join (dirname (__file__), 'README.txt')).read (),
	author = "John Millikin",
	author_email = "jmillikin@gmail.com",
	license = "GPL3",
	#url = "https://launchpad.net/pixra",
	#download_url = "http://cheeseshop.python.org/pypi/pixra/%s" % version,
	packages = ['pixra', 'pixra.models', 'pixra.tests'],
	platforms = ["Platform Independent"],
	classifiers = """
		Development Status :: 3 - Alpha
		Environment :: Web Environment
		Framework :: Django
		Intended Audience :: End Users/Desktop
		License :: OSI Approved :: GNU General Public License (GPL)
		Operating System :: OS Independent
		Programming Language :: Python
		Topic :: Internet
		Topic :: Multimedia :: Graphics
	""".split ('\n'),
	test_suite = "pixra.tests.suite",
	install_requires = ['PIL', 'django-genshi', 'django-resourcetags'],
	package_data = {'pixra': ['templates/*', 'static/*']},
	entry_points = {
		'pixra.archive_loaders': 'application/zip = pixra.archive_loaders:load_zip',
	},
)