
There doesn't seem to be a "summary" option, but "description" and "long_description" are different. Update the metadata to avoid warnings about the unknown "summary" and so that when the release announce script asks for the package description it gets the one line version instead of the longer one. Change-Id: Ibe3a14d76d07de54c250cf6e286af5a40e4b6456
18 lines
583 B
Python
18 lines
583 B
Python
from setuptools import setup, find_packages
|
|
|
|
# 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='XStatic-Angular-Bootstrap',
|
|
description="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""",
|
|
long_description=long_description,
|
|
maintainer="Maxime Vidori",
|
|
maintainer_email='maxime.vidori@enovance.com',
|
|
use_scm_version=True,
|
|
setup_requires=['setuptools_scm', 'wheel'],
|
|
packages=find_packages(),
|
|
include_package_data=True
|
|
)
|