xstatic-angular-material/setup.py
Sean McGinnis 32f969a32a Correct errors in README file
This changes the README from a txt to rst file for output formatting
and corrects doc8 warnings causing package checks to fail.

Change-Id: I5e050c71429e40d294510bf1fd294218c4dae81f
2018-06-21 06:10:00 -05:00

26 lines
748 B
Python

from setuptools import setup, find_packages
from xstatic.pkg import angular_material 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.rst').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_packages(),
namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True,
zip_safe=False,
install_requires=[],
)