mirror of https://github.com/cheat/cheat.git
Added some required fields to setup.py
This commit is contained in:
parent
b26adf2ca8
commit
12e6d83d47
6
setup.py
6
setup.py
|
@ -5,9 +5,13 @@ import os
|
||||||
|
|
||||||
setup(name='cheat',
|
setup(name='cheat',
|
||||||
version='1.0',
|
version='1.0',
|
||||||
description='Create and view interactive cheatsheets on the command-line', # nopep8
|
summary='Create and view interactive cheatsheets on the command-line',
|
||||||
|
homepage='',
|
||||||
author='Chris Lane',
|
author='Chris Lane',
|
||||||
author_email='chris@chris-allen-lane.com',
|
author_email='chris@chris-allen-lane.com',
|
||||||
|
license='',
|
||||||
|
description='',
|
||||||
|
platform='Posix',
|
||||||
url='https://github.com/chrisallenlane/cheat',
|
url='https://github.com/chrisallenlane/cheat',
|
||||||
packages=['cheatsheets'],
|
packages=['cheatsheets'],
|
||||||
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
||||||
|
|
Loading…
Reference in New Issue