2013-07-06 07:51:09 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2015-03-09 21:57:41 +00:00
|
|
|
from wakatime.__about__ import (
|
|
|
|
__author__,
|
|
|
|
__author_email__,
|
|
|
|
__description__,
|
|
|
|
__license__,
|
|
|
|
__title__,
|
|
|
|
__url__,
|
|
|
|
__version__,
|
|
|
|
)
|
2013-07-06 07:51:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
packages = [
|
2015-03-09 21:57:41 +00:00
|
|
|
__title__,
|
2013-07-06 07:51:09 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
setup(
|
2015-03-09 21:57:41 +00:00
|
|
|
name=__title__,
|
|
|
|
version=__version__,
|
|
|
|
license=__license__,
|
|
|
|
description=__description__,
|
2013-07-06 16:16:52 +00:00
|
|
|
long_description=open('README.rst').read(),
|
2015-03-09 21:57:41 +00:00
|
|
|
author=__author__,
|
|
|
|
author_email=__author_email__,
|
|
|
|
url=__url__,
|
2013-07-06 07:51:09 +00:00
|
|
|
packages=packages,
|
2015-03-09 21:57:41 +00:00
|
|
|
package_dir={__title__: __title__},
|
2013-07-06 07:51:09 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2013-07-06 16:16:52 +00:00
|
|
|
platforms='any',
|
2013-07-06 07:51:09 +00:00
|
|
|
entry_points={
|
2015-09-07 00:13:51 +00:00
|
|
|
'console_scripts': ['wakatime = wakatime.__init__:execute'],
|
2013-07-06 07:51:09 +00:00
|
|
|
},
|
|
|
|
classifiers=(
|
2014-03-12 23:25:00 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2013-07-06 07:51:09 +00:00
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Text Editors',
|
|
|
|
),
|
|
|
|
)
|