Merge pull request #868 from theodesp/issue-867

Fixed [Issue 867] Simplified code in setup.py
main
Selwin Ong 8 years ago committed by GitHub
commit 009c478822

@ -2,18 +2,19 @@
rq is a simple, lightweight, library for creating background jobs, and rq is a simple, lightweight, library for creating background jobs, and
processing them. processing them.
""" """
import sys
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
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: try:
locals = {} with open(os.path.join(basedir, 'rq/version.py')) as f:
exec(f.read(), locals) locals = {}
return locals['VERSION'] exec(f.read(), locals)
raise RuntimeError('No version info found.') return locals['VERSION']
except FileNotFoundError:
raise RuntimeError('No version info found.')
setup( setup(
@ -47,13 +48,13 @@ setup(
}, },
classifiers=[ classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers # As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
#'Development Status :: 1 - Planning', # 'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha', # 'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha', # 'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta', # 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature', # 'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive', # 'Development Status :: 7 - Inactive',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop', 'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology', 'Intended Audience :: Information Technology',

Loading…
Cancel
Save