Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #75 from docascode/yitian/better-example
Browse files Browse the repository at this point in the history
[dev] Add setup script to example package.
  • Loading branch information
killa1218 committed Jul 26, 2018
2 parents 121abb9 + f8ec31b commit 0d9d9c8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/example/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[wheel]
universal = 1
13 changes: 13 additions & 0 deletions tests/example/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup, find_packages

setup(
name='example',
version='0.1',
author='Yiding Tian',
author_email='yitian@microsoft.com',
url='https://github.com/docascode/sphinx-docfx-yaml/tree/master/tests/example',
description='Test Package for sphinx-docfx-yaml',
package_dir={'': '.'},
packages=find_packages('.', exclude=['doc']),
include_package_data=True
)

0 comments on commit 0d9d9c8

Please sign in to comment.