~cjsmo/+junk/smartshine-package

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/python


from distutils.core import setup

setup(
	name = "SmartShine",
	version = "0.36",
	description = "SmartShine is a GUI for aaphoto utility, which automatically adjusts levels/contrast/white balance/saturation of your photos.",
	author = "Dariusz Duma",
	author_email = "dhor@toxic.net.pl",
	url = "https://launchpad.net/smartshine",
	license = 'GNU GPL-3',
	packages = ["smartshine"],
	package_data = {"smartshine": [
		"smartshine.py",
		"images/smartshine.png",
		"ui/smartshine_g3.ui",
		"locale/pl/LC_MESSAGES/smartshine.po",
		"locale/pl/LC_MESSAGES/smartshine.mo",
	]},
	scripts = ["bin/smartshine"],
)