diff options
author | Reimar Bauer <rb.proj AT googlemail DOT com@localhost> | 2012-02-25 10:39:56 +0100 |
---|---|---|
committer | Reimar Bauer <rb.proj AT googlemail DOT com@localhost> | 2012-02-25 10:39:56 +0100 |
commit | 1e6c53614b87f0f135f3083cee7cd00ccdfb53dd (patch) | |
tree | fb51d3bf6b6d0dfcb0d86421e043c4ac6b18451e /setup.py | |
download | xstatic-jquery-ui-git-1e6c53614b87f0f135f3083cee7cd00ccdfb53dd.tar.gz |
initial version of jquery-ui-1.8.18 for XStatic packaging standard
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3d82b26 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from xstatic.pkg import jquery_ui as xs + +# The README.txt file should be written in reST so that PyPI can use +# it to generate your project's PyPI page. +long_description = open('README.txt').read() + +from setuptools import setup, find_packages + +setup( + name=xs.PACKAGE_NAME, + version=xs.PACKAGE_VERSION, + description=xs.DESCRIPTION, + long_description=long_description, + classifiers=xs.CLASSIFIERS, + keywords=xs.KEYWORDS, + maintainer=xs.MAINTAINER, + maintainer_email=xs.MAINTAINER_EMAIL, + license=xs.LICENSE, + url=xs.HOMEPAGE, + platforms=xs.PLATFORMS, + packages=find_packages(), + namespace_packages=['xstatic', 'xstatic.pkg', ], + include_package_data=True, + zip_safe=False, + install_requires=['XStatic-jQuery'], +) |