forked from seomoz/shovel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 1.05 KB
/
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
33
34
35
#! /usr/bin/env python
try:
from setuptools import setup
extra = {
'install_requires' : ['argparse']
}
except ImportError:
from distutils.core import setup
extra = {
'dependencies' : ['argparse']
}
setup(name = 'shovel',
version = '0.1.9',
description = 'Not Rake, but Shovel',
long_description = 'Execute python functions as tasks',
url = 'http://github.com/seomoz/shovel',
author = 'Dan Lecocq',
author_email = '[email protected]',
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', 'bin/shovel-server'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
],
**extra
)