From: Thanh Ha Date: Thu, 9 Aug 2018 22:26:28 +0000 (-0400) Subject: Setup PBR X-Git-Tag: v0.2.4~4 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=6c80e98f63892c900b38cc2b3a6789efbd60d66c;p=releng%2Fdocs-conf.git Setup PBR Change-Id: I51d260da9f38fba8851d4d8e72976209f332d842 Signed-off-by: Thanh Ha --- diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e4dc9e5 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,25 @@ +[metadata] +name = lfdocs_conf +author = Linux Foundation Releng +author-email = releng@linuxfoundation.org +summary = Linux Foundation DocsConf +description-file = README.rst +description-content-type = text/x-rst; charset=UTF-8 +home-page = https://docs.releng.linuxfoundation.org/projects/lfdocs-conf +project_urls = + Bug Tracker = https://jira.linuxfoundation.org + Documentation = https://docs.releng.linuxfoundation.org/projects/lfdocs-conf + Source Code = https://github.com/lfit/releng-docs-conf +license = EPL-1.0 +classifier = + Intended Audience :: Developers + Intended Audience :: Information Technology + License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0) + Operating System :: OS Independent + Programming Language :: Python + +[files] +packages = docs_conf +package_data = + docs_conf = + defaults/* diff --git a/setup.py b/setup.py index f8edab9..27a940e 100644 --- a/setup.py +++ b/setup.py @@ -12,14 +12,7 @@ with open('requirements.txt') as f: setup( - name='lfdocs_conf', - packages=['docs_conf'], - version=__version__, - author=__author__, - author_email="releng@linuxfoundation.org", - url="https://gerrit.linuxfoundation.org/infra/#/q/project:releng/docs-conf", - package_data={ - 'docs_conf': ['defaults/*'] - }, + setup_requires=['pbr'], + pbr=True, install_requires=install_reqs )