Files
xstatic-angular-gettext/setup.py
Stephen Finucane debccea288 Migrate to native namespaces
Change-Id: Iad300e37b11e46796d2622e131bef6e9f055b7a2
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2026-02-11 14:27:23 +00:00

25 lines
716 B
Python

from setuptools import setup, find_namespace_packages
from xstatic.pkg import angular_gettext 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()
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_namespace_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[],
)