debian-xstatic-jquery/setup.py

29 lines
850 B
Python
Raw Normal View History

from xstatic.pkg import jquery as xs
2011-06-26 07:38:20 +02:00
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
2018-09-18 23:40:25 +02:00
with open('README.txt') as f:
long_description = f.read()
2011-06-26 07:38:20 +02:00
from setuptools import setup, find_packages
2011-06-26 07:38:20 +02:00
setup(
name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION,
description=xs.DESCRIPTION,
2011-06-26 07:38:20 +02:00
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,
2011-06-26 07:38:20 +02:00
packages=find_packages(),
namespace_packages=['xstatic', 'xstatic.pkg', ],
include_package_data=True,
zip_safe=False,
install_requires=[], # nothing! :)
# if you like, you MAY use the 'XStatic' package.
2011-06-26 07:38:20 +02:00
)