cherryext/setup.py

16 lines
461 B
Python
Raw Permalink Normal View History

2018-08-08 13:34:18 +03:00
import setuptools
setuptools.setup(
2013-04-30 09:49:34 +04:00
name='Orun',
2018-08-17 12:19:56 +03:00
version='0.4.0',
2018-08-09 09:04:49 +03:00
author='Alexandre L. Dias, Roman Borodin (inpos@yandex.ru)',
2013-04-30 09:49:34 +04:00
author_email='alexandre@katrid.com',
2018-08-23 18:48:14 +03:00
packages=setuptools.find_packages(),
2018-08-08 13:34:18 +03:00
include_package_data=True,
2018-08-17 22:49:34 +03:00
zip_safe=False,
2013-04-30 09:49:34 +04:00
url='http://pypi.python.org/pypi/Orun/',
2018-08-08 13:34:18 +03:00
license='LICENSE',
2013-04-30 09:49:34 +04:00
description='Orun (Object RUNtime) Python JavaScript RIA framework.',
2018-08-08 11:07:52 +03:00
long_description=open('README').read(),
2018-08-23 15:28:20 +03:00
)