Files
xstatic-moment/setup.py
Stephen Finucane 49f36a0de8 Migrate to native namespaces
Change-Id: I2196255b55836575470071ff5e5e09db32e47426
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2026-02-11 14:25:05 +00:00

26 lines
724 B
Python

from setuptools import setup, find_namespace_packages
from xstatic.pkg import moment as xs
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
with open('README.txt') as f:
long_description = f.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=[],
)