rana-cli/setup.py

37 lines
945 B
Python
Raw Normal View History

2013-07-06 07:51:09 +00:00
from setuptools import setup
from wakatime.__init__ import __version__ as VERSION
2013-07-06 07:51:09 +00:00
packages = [
'wakatime',
]
setup(
name='wakatime',
version=VERSION,
license='BSD 3 Clause',
2014-03-12 23:21:22 +00:00
description='Interface to the WakaTime api.',
long_description=open('README.rst').read(),
2013-07-06 07:51:09 +00:00
author='Alan Hamlett',
2014-03-12 23:21:22 +00:00
author_email='alan@wakatime.com',
2013-07-06 07:51:09 +00:00
url='https://github.com/wakatime/wakatime',
packages=packages,
package_dir={'wakatime': 'wakatime'},
include_package_data=True,
zip_safe=False,
platforms='any',
2013-07-06 07:51:09 +00:00
entry_points={
'console_scripts': ['wakatime = wakatime.__init__:main'],
2013-07-06 07:51:09 +00:00
},
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Text Editors',
),
)