Skip to content

Commit

Permalink
Added requirements and closed opened files
Browse files Browse the repository at this point in the history
  • Loading branch information
ylogx committed Feb 2, 2015
1 parent 4d5d4ae commit ce53c02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Empty file added requirements.txt
Empty file.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
},
)

fhan = open('requirements.txt', 'rU')
requires = [line.strip() for line in fhan.readlines()]
fhan.close()
fhan = open('README.txt')
long_description = fhan.read()
fhan.close()

setup(
name='Universal',
description='Universal Competitive Programming Suite helps you work'
Expand All @@ -16,7 +23,8 @@
author='Shubham Chaudhary',
author_email='[email protected]',
url='https://github.com/shubhamchaudhary/universal',
long_description=open('README.txt').read(),
long_description=long_description,
install_requires=requires,
**add_keywords
)

0 comments on commit ce53c02

Please sign in to comment.