-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
executable file
·32 lines (29 loc) · 977 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
import sys
from setuptools import setup
setup(
name='shovel',
version='0.5.0',
description='Not Rake, but Shovel',
long_description='Execute python functions as tasks',
url='http://github.com/seomoz/shovel',
author='Dan Lecocq',
author_email='dan@moz.com',
license="MIT License",
keywords='tasks, shovel, rake',
packages=['shovel'],
package_dir={'shovel': 'shovel'},
package_data={'shovel': ['templates/*.tpl', 'static/css/*']},
include_package_data=True,
# scripts=['bin/shovel'],
entry_points={'console_scripts': ['shovel = shovel:run']},
setup_requires=['nose>=1.3'],
test_suite='nose2.collector.collector',
tests_require=['nose>=1.3', 'path.py>=5.0', 'coverage>=3.7'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
],
)