Skip to content

Commit

Permalink
add .pyup.yml, tweak setup
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Oct 23, 2017
1 parent 06d971a commit 13300cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .pyup.yml
@@ -0,0 +1 @@
schedule: 'every month'
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -3,7 +3,11 @@
from setuptools import setup

THIS_DIR = Path(__file__).resolve().parent
long_description = THIS_DIR.joinpath('README.rst').read_text()
long_description = (
THIS_DIR.joinpath('README.rst').read_text() +
'\n\n' +
THIS_DIR.joinpath('HISTORY.rst').read_text()
)

# avoid loading the package before requirements are installed:
version = SourceFileLoader('version', 'pydantic/version.py').load_module()
Expand Down

0 comments on commit 13300cd

Please sign in to comment.