26 lines
788 B
Python
26 lines
788 B
Python
import setuptools
|
|
import os
|
|
|
|
def package_files(directory):
|
|
paths = []
|
|
for (path, _, filenames) in os.walk(directory):
|
|
for filename in filenames:
|
|
paths.append(os.path.join('..', path, filename))
|
|
return paths
|
|
|
|
extra_files = package_files('examples')
|
|
extra_files.extend(package_files('extjs/static'))
|
|
|
|
setuptools.setup(
|
|
name='Orun',
|
|
version='0.2.0',
|
|
author='Alexandre L. Dias, Roman Borodin (inpos@yandex.ru)',
|
|
author_email='alexandre@katrid.com',
|
|
packages=setuptools.find_packages(),
|
|
package_data={'': extra_files},
|
|
include_package_data=True,
|
|
url='http://pypi.python.org/pypi/Orun/',
|
|
license='LICENSE',
|
|
description='Orun (Object RUNtime) Python JavaScript RIA framework.',
|
|
long_description=open('README').read(),
|
|
) |