Skip to content

Commit

Permalink
Remove requirements.txt and reset setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwri committed Sep 29, 2016
1 parent 6482aa6 commit 6266c9e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

10 changes: 1 addition & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@

description = long_description.splitlines()[0].strip()

try:
with open('requirements.txt') as f:
required = f.read().splitlines()
except IOError:
print('Unable to open requirements.txt')
required = []


setup(
name='voluptuous',
url='https://github.com/alecthomas/voluptuous',
Expand All @@ -55,7 +47,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
install_requires=required + [
install_requires=[
'setuptools >= 0.6b1',
]
)

0 comments on commit 6266c9e

Please sign in to comment.