![Richard Jones](/assets/img/avatar_default.png)
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. Had to bump the build version since there's already a tag for 1.6.50.1 Change-Id: I242418b4a94e57d926bafa0d537d3558d861c686
18 lines
552 B
Python
18 lines
552 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-mdi',
|
|
description="""mdi 1.6.50 (XStatic packaging standard)""",
|
|
long_description=long_description,
|
|
maintainer="Diana Whitten",
|
|
maintainer_email='hurgleburgler@gmail.com',
|
|
use_scm_version=True,
|
|
setup_requires=['setuptools_scm', 'wheel'],
|
|
packages=find_packages(),
|
|
include_package_data=True
|
|
)
|