diff options
author | Jon Bernard <jbernard@tuxion.com> | 2014-07-11 14:34:59 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2014-07-11 14:47:14 -0400 |
commit | 7f967c2f901a544c6cfc4fa1ffc17aa5f0b4eda8 (patch) | |
tree | fcec8c8a95d49713d37652df2cebdb9e6261c7af /setup.py | |
parent | 9188de595ff2e6ee9f06469dd4d708510930eafa (diff) | |
download | dotfiles-7f967c2f901a544c6cfc4fa1ffc17aa5f0b4eda8.tar.gz dotfiles-7f967c2f901a544c6cfc4fa1ffc17aa5f0b4eda8.tar.bz2 dotfiles-7f967c2f901a544c6cfc4fa1ffc17aa5f0b4eda8.zip |
Add license field back to setup keywords
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,12 +8,13 @@ setup( version=__version__, author='Jon Bernard', author_email='jbernard@tuxion.com', - url='https://github.com/jbernard/dotfiles', - packages=['dotfiles'], description='Easily manage your dotfiles', + url='https://github.com/jbernard/dotfiles', long_description=open('README.rst').read() + '\n\n' + open('LICENSE.rst').read() + '\n\n' + open('HISTORY.rst').read(), + license='ISC', + packages=['dotfiles'], entry_points = ''' [console_scripts] dotfiles=dotfiles.cli:main |