mirror of https://github.com/rq/rq.git
Tag the first public release.
This commit is contained in:
parent
ccc9abd8fa
commit
100d23b72e
|
@ -1 +1 @@
|
|||
VERSION = '0.1'
|
||||
VERSION = '0.1.0'
|
||||
|
|
5
setup.py
5
setup.py
|
@ -6,6 +6,7 @@ import sys
|
|||
import os
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
def get_version():
|
||||
basedir = os.path.dirname(__file__)
|
||||
with open(os.path.join(basedir, 'rq/version.py')) as f:
|
||||
|
@ -14,6 +15,7 @@ def get_version():
|
|||
return VERSION
|
||||
raise RuntimeError('No version info found.')
|
||||
|
||||
|
||||
def get_dependencies():
|
||||
deps = ['redis', 'procname', 'times']
|
||||
deps += ['logbook'] # should be soft dependency?
|
||||
|
@ -60,7 +62,7 @@ setup(
|
|||
'Operating System :: MacOS',
|
||||
'Operating System :: Unix',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
'Topic :: Internet',
|
||||
'Topic :: Scientific/Engineering',
|
||||
'Topic :: System :: Distributed Computing',
|
||||
|
@ -69,4 +71,3 @@ setup(
|
|||
|
||||
]
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue