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

25 lines
708 B
Python

from setuptools import setup, find_namespace_packages
from xstatic.pkg import angular 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=[],
)