| 1 |
|
|---|
| 2 |
from ez_setup import use_setuptools |
|---|
| 3 |
|
|---|
| 4 |
use_setuptools() |
|---|
| 5 |
|
|---|
| 6 |
from setuptools import setup, find_packages |
|---|
| 7 |
|
|---|
| 8 |
setup( |
|---|
| 9 |
name='gaphas', |
|---|
| 10 |
version='0.1.3', |
|---|
| 11 |
description='Gaphas is a GTK+ based diagramming widget', |
|---|
| 12 |
long_description="""\ |
|---|
| 13 |
Gaphas is a GTK+ based diagramming widget written in Python. |
|---|
| 14 |
It is the logical successor of the DiaCanvas library. |
|---|
| 15 |
|
|---|
| 16 |
GTK+ and PyGTK is required. |
|---|
| 17 |
""", |
|---|
| 18 |
|
|---|
| 19 |
classifiers=[ |
|---|
| 20 |
'Development Status :: 4 - Beta', |
|---|
| 21 |
'Environment :: X11 Applications :: GTK', |
|---|
| 22 |
'Intended Audience :: Developers', |
|---|
| 23 |
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', |
|---|
| 24 |
'Programming Language :: Python', |
|---|
| 25 |
'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 26 |
], |
|---|
| 27 |
|
|---|
| 28 |
keywords='', |
|---|
| 29 |
|
|---|
| 30 |
author="Arjan J. Molenaar", |
|---|
| 31 |
author_email='arjanmol@users.sourceforge.net', |
|---|
| 32 |
|
|---|
| 33 |
url='http://gaphor.sourceforge.net/', |
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
license='GNU Library General Public License (LGPL, see COPYING)', |
|---|
| 38 |
|
|---|
| 39 |
packages=find_packages(exclude=['ez_setup']), |
|---|
| 40 |
|
|---|
| 41 |
setup_requires = 'nose >= 0.9.2', |
|---|
| 42 |
|
|---|
| 43 |
install_requires=[ |
|---|
| 44 |
'decorator >= 2.0.1', |
|---|
| 45 |
|
|---|
| 46 |
], |
|---|
| 47 |
|
|---|
| 48 |
zip_safe=False, |
|---|
| 49 |
|
|---|
| 50 |
package_data={ |
|---|
| 51 |
|
|---|
| 52 |
}, |
|---|
| 53 |
|
|---|
| 54 |
entry_points = { |
|---|
| 55 |
"distutils.commands": [ "nosetests = nose.commands:nosetests", ], |
|---|
| 56 |
}, |
|---|
| 57 |
|
|---|
| 58 |
test_suite = 'nose.collector', |
|---|
| 59 |
|
|---|
| 60 |
) |
|---|
| 61 |
|
|---|