-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='jqueue',
packages=['jqueue'],
entry_points = {
'console_scripts':
['jqueue-server = jqueue.cli:runner']
},
author='Adam Marchetti',
version='0.1.2',
description='A queue for distributed job processing',
author_email='adamnew123456@gmail.com',
keywords=['networking'],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
'Topic :: System :: Networking',
'Topic :: Utilities',
],
long_description="Provides a networked job queue for processing jobs via a network.")