rana-cli/setup.py

46 lines
1.4 KiB
Python
Raw Normal View History

2013-07-06 07:51:09 +00:00
from setuptools import setup
about = {}
with open('wakatime/__about__.py') as f:
exec(f.read(), about)
2013-07-06 07:51:09 +00:00
packages = [
about['__title__'],
2013-07-06 07:51:09 +00:00
]
setup(
name=about['__title__'],
version=about['__version__'],
license=about['__license__'],
description=about['__description__'],
long_description=open('README.rst').read(),
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
2013-07-06 07:51:09 +00:00
packages=packages,
package_dir={about['__title__']: about['__title__']},
2013-07-06 07:51:09 +00:00
include_package_data=True,
zip_safe=False,
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
},
2017-02-16 20:11:12 +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',
2016-04-18 18:40:02 +00:00
'Programming Language :: Python',
2016-04-18 22:10:13 +00:00
'Programming Language :: Python :: 2',
2016-04-18 18:40:02 +00:00
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
2016-04-18 22:10:13 +00:00
'Programming Language :: Python :: 3',
2016-04-18 18:40:02 +00:00
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2017-02-16 20:11:12 +00:00
'Programming Language :: Python :: 3.6',
'Topic :: Text Editors',
],
2013-07-06 07:51:09 +00:00
)