-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1 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
#! /usr/bin/env python
import sys
try:
from setuptools import setup
extra = {
'install_requires': ['argparse']
}
if sys.version_info >= (3,):
extra['use_2to3'] = True
except ImportError:
from distutils.core import setup
extra = {
'dependencies': ['argparse']
}
setup(name = 'shovel-campfire',
version = '0.1.0',
description = 'Campfire client for shovel',
url = 'http://github.com/seomoz/shovel-campfire',
author = 'Dan Lecocq',
author_email = 'dan@moz.com',
license = "MIT License",
keywords = 'tasks, shovel, rake, campfire',
include_package_data = True,
scripts = ['bin/shovel-campfire'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
],
**extra
)