blob: 4d8000efc1a930683e88f0c9f5fc5a585e7e0d16 [file] [log] [blame]
Matthias Braun32989732017-11-07 03:18:31 +00001from setuptools import setup, find_packages
2
3setup(
4 name='tasktool',
5 version='1.0',
6 author='Matthias Braun',
7 author_email='matze@braunis.de',
8 license='BSD',
9 description='CI Task Runner',
10 classifiers=[
11 'Development Status :: 5 - Production/Stable',
12 'Environment :: Console',
13 'Intended Audience :: Developers',
14 'License :: OSI Approved :: BSD License',
15 'Operating System :: POSIX',
16 'Programming Language :: Python',
17 'Programming Language :: Unix Shell',
18 'Topic :: Software Development :: Build Tools',
19 'Topic :: Software Development :: Quality Assurance'
20 'Topic :: Software Development :: Testing',
21 ],
22 package_data={
23 'tasktool': ['hooks/*'],
24 },
25 packages=find_packages(),
26 entry_points={
27 'console_scripts': ['task=tasktool.task:main'],
28 },
29)