added long_description and platforms keys to setup()
This commit is contained in:
parent
a902a2b948
commit
18ceddc9b5
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
@ -11,10 +11,11 @@ setup(
|
|||
name='wakatime',
|
||||
version=VERSION,
|
||||
license='BSD 3 Clause',
|
||||
description=(
|
||||
description=' '.join([
|
||||
'Event appender for Wakati.Me, a time',
|
||||
'tracking api for text editors.',
|
||||
),
|
||||
]),
|
||||
long_description=open('README.rst').read(),
|
||||
author='Alan Hamlett',
|
||||
author_email='alan.hamlett@gmail.com',
|
||||
url='https://github.com/wakatime/wakatime',
|
||||
|
@ -22,6 +23,7 @@ setup(
|
|||
package_dir={'wakatime': 'wakatime'},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
platforms='any',
|
||||
entry_points={
|
||||
'console_scripts': ['wakatime = wakatime.wakatime:main'],
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue