mirror of
https://github.com/mikf/gallery-dl.git
synced 2025-01-31 19:51:34 +01:00
update setup.py
- add Python version check - add classifiers - simplify sys.exit() usage
This commit is contained in:
parent
fd8ed35591
commit
a36259d8f1
@ -16,9 +16,8 @@ __email__ = "mike_faehrmann@web.de"
|
||||
|
||||
import sys
|
||||
|
||||
if sys.hexversion < 0x3030000:
|
||||
print("Python 3.4+ required", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
if sys.hexversion < 0x3040000:
|
||||
sys.exit("Python 3.4+ required")
|
||||
|
||||
import json
|
||||
import logging
|
||||
|
@ -6,4 +6,4 @@
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation.
|
||||
|
||||
__version__ = "1.5.4-dev"
|
||||
__version__ = "1.6.0-dev"
|
||||
|
14
setup.py
14
setup.py
@ -1,9 +1,13 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import unicode_literals, print_function
|
||||
|
||||
import sys
|
||||
import os.path
|
||||
|
||||
if sys.hexversion < 0x3040000:
|
||||
sys.exit("Python 3.4+ required")
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
@ -14,7 +18,9 @@ except ImportError:
|
||||
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
|
||||
path = os.path.join(os.path.dirname(__file__), fname)
|
||||
with open(path, encoding="utf-8") as file:
|
||||
return file.read()
|
||||
|
||||
|
||||
# get version without importing the package
|
||||
@ -28,8 +34,7 @@ if "py2exe" in sys.argv:
|
||||
try:
|
||||
import py2exe
|
||||
except ImportError:
|
||||
print("Error importing 'py2exe'", file=sys.stderr)
|
||||
exit(1)
|
||||
sys.exit("Error importing 'py2exe'")
|
||||
params = {
|
||||
"console": [{
|
||||
"script": "./gallery_dl/__main__.py",
|
||||
@ -93,12 +98,15 @@ setup(
|
||||
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
||||
"Operating System :: Microsoft :: Windows",
|
||||
"Operating System :: POSIX",
|
||||
"Operating System :: MacOS",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Topic :: Internet :: WWW/HTTP",
|
||||
"Topic :: Multimedia :: Graphics",
|
||||
"Topic :: Utilities",
|
||||
],
|
||||
test_suite="test",
|
||||
**params
|
||||
|
Loading…
x
Reference in New Issue
Block a user