xstatic-angular-lrdragndrop/setup.py
Thomas Goirand e1d199edf3 Commits changes available on PyPi
The release .2 on PyPi already includes changes acted uppon in
Horizon. This patch commits those changes to stackforge. It
also adds a .gitreview file.

Change-Id: Ibc25f66dba97c2121b5d7fe485175d7cd76b6267
2015-04-03 09:26:20 +02:00

28 lines
755 B
Python

from xstatic.pkg import angular_lrdragndrop 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=[],
)