-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
69 lines (52 loc) · 1.73 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""Package setup information."""
from subprocess import call
from setuptools import Command, setup
class RunTests(Command):
"""Run all tests."""
description = 'run tests'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
"""Run all tests!"""
errno = call(['py.test'])
raise SystemExit(errno)
setup(
# Basic package information:
name = 'simpleq',
version = '0.0.1',
py_modules = ['simpleq'],
# Packaging options:
zip_safe = False,
include_package_data = True,
# Package dependencies:
install_requires = ['boto>=2.30.0'],
# Metadata for PyPI:
author = 'Randall Degges',
author_email = '[email protected]',
license = 'UNLICENSE',
url = 'https://github.com/rdegges/simpleq',
keywords = 'SQS AWS amazon web services queue worker tasks job',
description = 'A simple, infinitely scalable, SQS based queue.',
long_description = 'A simple, infinitely scalable, SQS based queue.',
# Classifiers:
platforms = 'any',
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
],
# Test helper:
cmdclass = {'test': RunTests},
)