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
|
import os
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
basedir = os.path.dirname(__file__)
|
basedir = os.path.dirname(__file__)
|
||||||
with open(os.path.join(basedir, 'rq/version.py')) as f:
|
with open(os.path.join(basedir, 'rq/version.py')) as f:
|
||||||
|
@ -14,6 +15,7 @@ def get_version():
|
||||||
return VERSION
|
return VERSION
|
||||||
raise RuntimeError('No version info found.')
|
raise RuntimeError('No version info found.')
|
||||||
|
|
||||||
|
|
||||||
def get_dependencies():
|
def get_dependencies():
|
||||||
deps = ['redis', 'procname', 'times']
|
deps = ['redis', 'procname', 'times']
|
||||||
deps += ['logbook'] # should be soft dependency?
|
deps += ['logbook'] # should be soft dependency?
|
||||||
|
@ -60,7 +62,7 @@ setup(
|
||||||
'Operating System :: MacOS',
|
'Operating System :: MacOS',
|
||||||
'Operating System :: Unix',
|
'Operating System :: Unix',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Scientific/Engineering',
|
'Topic :: Scientific/Engineering',
|
||||||
'Topic :: System :: Distributed Computing',
|
'Topic :: System :: Distributed Computing',
|
||||||
|
@ -69,4 +71,3 @@ setup(
|
||||||
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue