Skip to content

Commit

Permalink
Minor packaging tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jimr committed Oct 13, 2016
1 parent 779f068 commit 5328047
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requirements:
- requirements.txt
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests[security]
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyup: ignore file
pip==8.1.2
bumpversion==0.5.3
wheel==0.29.0
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
history = history_file.read()
# Skipping the first line reduces the heading level by 1
history = ''.join(history_file.readlines()[1:])

requirements = [
'requests[security]',
]
with open('requirements.txt') as req_file:
requirements = req_file.readlines()

test_requirements = [
'mock==2.0.0',
Expand Down

0 comments on commit 5328047

Please sign in to comment.