Setup PBR 92/12192/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Thu, 9 Aug 2018 22:26:28 +0000 (18:26 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Thu, 9 Aug 2018 22:26:28 +0000 (18:26 -0400)
Change-Id: I51d260da9f38fba8851d4d8e72976209f332d842
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
setup.cfg [new file with mode: 0644]
setup.py

diff --git a/setup.cfg b/setup.cfg
new file mode 100644 (file)
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/*
index f8edab9..27a940e 100644 (file)
--- 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
 )