cherryext/setup.py

13 lines
413 B
Python
Raw Normal View History

2013-04-30 09:49:34 +04:00
from distutils.core import setup
setup(
name='Orun',
version='0.1.0',
author='Alexandre L. Dias',
author_email='alexandre@katrid.com',
2018-08-08 13:08:57 +03:00
packages=['orun', 'orun.examples', 'orun.extjs', 'orun.servers'],
2013-04-30 09:49:34 +04:00
url='http://pypi.python.org/pypi/Orun/',
license='LICENSE.txt',
description='Orun (Object RUNtime) Python JavaScript RIA framework.',
2018-08-08 11:07:52 +03:00
long_description=open('README').read(),
2013-04-30 09:49:34 +04:00
)