|
Revision 759, 0.9 kB
(checked in by sylvain, 4 months ago)
|
Fixed licensing
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
from distutils.command.install import INSTALL_SCHEMES |
|---|
| 3 |
from setuptools import setup |
|---|
| 4 |
|
|---|
| 5 |
for scheme in INSTALL_SCHEMES.values(): |
|---|
| 6 |
scheme['data'] = scheme['purelib'] |
|---|
| 7 |
|
|---|
| 8 |
setup(name = "jlib", |
|---|
| 9 |
version = '0.1.0', |
|---|
| 10 |
description = "PyQt4 library for writing XMPP applications", |
|---|
| 11 |
maintainer = "Sylvain Hellegouarch", |
|---|
| 12 |
maintainer_email = "sh@defuze.org", |
|---|
| 13 |
url = "http://trac.defuze.org/wiki/jlib", |
|---|
| 14 |
download_url = "http://www.defuze.org/oss/jlib/", |
|---|
| 15 |
packages = ["jlib", "jlib.core", "jlib.gui", "jlib.gui.pubsub", |
|---|
| 16 |
"jlib.gui.atom"], |
|---|
| 17 |
platforms = ["any"], |
|---|
| 18 |
license = ['Mozilla Public License 1.1', |
|---|
| 19 |
'GNU General Public License 2.0', |
|---|
| 20 |
'Lesser General Public License 2.1'], |
|---|
| 21 |
zip_safe=False, |
|---|
| 22 |
long_description = "PyQt4 library for writing XMPP applications", |
|---|
| 23 |
) |
|---|