diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | setup.py | 9 |
2 files changed, 9 insertions, 2 deletions
@@ -7,6 +7,8 @@ creation is now done after reading all the configuration values; the function also creates the combox directory if it does not already exist. + * setup.py: added function for reading a file; we don't use the + read_file function from combox.file module anymore. 2016-01-10 Siddharth Ravikumar <sravik@bgsu.edu> @@ -20,13 +20,18 @@ from setuptools import setup, find_packages -from combox.file import read_file from combox._version import get_version + +def readf(filename): + with open(filename, 'r') as f: + return f.read() + + config = { 'name': 'combox', 'description': 'Encrypts files and scatters them across storage provided by Google Drive and Dropbox.', - 'long_description': read_file('README.rst'), + 'long_description': readf('README.rst'), 'version': get_version(), 'platforms': ['GNU/Linux', 'OS X'], 'license': 'GNU General Public License version 3 or later', |