13 lines
383 B
Python
13 lines
383 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='Orun',
|
||
|
version='0.1.0',
|
||
|
author='Alexandre L. Dias',
|
||
|
author_email='alexandre@katrid.com',
|
||
|
packages=['orun', 'orun.test'],
|
||
|
url='http://pypi.python.org/pypi/Orun/',
|
||
|
license='LICENSE.txt',
|
||
|
description='Orun (Object RUNtime) Python JavaScript RIA framework.',
|
||
|
long_description=open('README.txt').read(),
|
||
|
)
|