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',
|
name='wakatime',
|
||||||
version=VERSION,
|
version=VERSION,
|
||||||
license='BSD 3 Clause',
|
license='BSD 3 Clause',
|
||||||
description=(
|
description=' '.join([
|
||||||
'Event appender for Wakati.Me, a time',
|
'Event appender for Wakati.Me, a time',
|
||||||
'tracking api for text editors.',
|
'tracking api for text editors.',
|
||||||
),
|
]),
|
||||||
|
long_description=open('README.rst').read(),
|
||||||
author='Alan Hamlett',
|
author='Alan Hamlett',
|
||||||
author_email='alan.hamlett@gmail.com',
|
author_email='alan.hamlett@gmail.com',
|
||||||
url='https://github.com/wakatime/wakatime',
|
url='https://github.com/wakatime/wakatime',
|
||||||
|
@ -22,6 +23,7 @@ setup(
|
||||||
package_dir={'wakatime': 'wakatime'},
|
package_dir={'wakatime': 'wakatime'},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
platforms='any',
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': ['wakatime = wakatime.wakatime:main'],
|
'console_scripts': ['wakatime = wakatime.wakatime:main'],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue