Skip to content
This repository has been archived by the owner on Jul 23, 2022. It is now read-only.

Commit

Permalink
refactor setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Apr 11, 2021
1 parent 6e4cf9f commit 3dfaef7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 122 deletions.
2 changes: 1 addition & 1 deletion .local.jenkins.lin.yml
Expand Up @@ -15,7 +15,7 @@ install:
- $PYINT -m pip freeze

script:
- { CMD: "$PYINT -u setup.py unittests", NAME: "UT" }
- { CMD: "$PYINT -u setup.py unittests --covtoken=48330d77-e22b-41b7-83f4-8dbc39abd93b", NAME: "UT" }

after_script:
- $PYINT -u setup.py bdist_wheel
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -8,6 +8,7 @@ pandas
pycodestyle
pylint
pyquickhelper
pyquicksetup>=0.2
Pillow
sphinx
sphinxcontrib.imagesvg
Expand Down
141 changes: 20 additions & 121 deletions setup.py
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
import sys
import os
from distutils.core import setup
from setuptools import find_packages
from setuptools import find_packages, setup
from pyquicksetup import read_version, read_readme, default_cmdclass

#########
# settings
Expand Down Expand Up @@ -37,122 +37,21 @@
package_dir = {k: "src/" + k.replace(".", "/") for k in packages}
package_data = {}

############
# functions
############


def ask_help():
return "--help" in sys.argv or "--help-commands" in sys.argv


def is_local():
file = os.path.abspath(__file__).replace("\\", "/").lower()
if "/temp/" in file and "pip-" in file:
return False
from pyquickhelper.pycode.setup_helper import available_commands_list
return available_commands_list(sys.argv)


def verbose():
print("---------------------------------")
print("package_dir =", package_dir)
print("packages =", packages)
print("package_data=", package_data)
print("current =", os.path.abspath(os.getcwd()))
print("---------------------------------")

##########
# version
##########


if is_local() and not ask_help():
def write_version():
from pyquickhelper.pycode import write_version_for_setup
return write_version_for_setup(__file__)

write_version()

versiontxt = os.path.join(os.path.dirname(__file__), "version.txt")
if os.path.exists(versiontxt):
with open(versiontxt, "r") as f:
lines = f.readlines()
subversion = "." + lines[0].strip("\r\n ")
if subversion == ".0":
raise Exception("Git version is wrong: '{0}'.".format(subversion))
else:
raise FileNotFoundError(versiontxt)
else:
# when the module is installed, no commit number is displayed
subversion = ""

if "upload" in sys.argv and not subversion and not ask_help():
# avoid uploading with a wrong subversion number
raise Exception(
"Git version is empty, cannot upload, is_local()={0}".format(is_local()))

##############
# common part
##############

if os.path.exists(readme):
with open(readme, "r", encoding='utf-8-sig') as f:
long_description = f.read()
else:
long_description = ""
if os.path.exists(history):
with open(history, "r", encoding='utf-8-sig') as f:
long_description += f.read()

if "--verbose" in sys.argv:
verbose()

if is_local():
import pyquickhelper
logging_function = pyquickhelper.get_fLOG()
logging_function(OutputPrint=True)
from pyquickhelper.pycode import process_standard_options_for_setup
r = process_standard_options_for_setup(
sys.argv, __file__, project_var_name,
requirements=["pyquickhelper", "jyquickhelper"],
additional_notebook_path=["pyquickhelper", "jyquickhelper"],
unittest_modules=["pyquickhelper", "jyquickhelper"],
github_owner='sdpython', fLOG=logging_function, layout=['html'],
covtoken=("48330d77-e22b-41b7-83f4-8dbc39abd93b", "'_UT_39_std' in outfile"))
if not r and not ({"bdist_msi", "sdist",
"bdist_wheel", "publish", "publish_doc", "register",
"upload_docs", "bdist_wininst", "build_ext"} & set(sys.argv)):
raise Exception("unable to interpret command line: " + str(sys.argv))
else:
r = False

if ask_help():
from pyquickhelper.pycode import process_standard_options_for_setup_help
process_standard_options_for_setup_help(sys.argv)

if not r:
if len(sys.argv) in (1, 2) and sys.argv[-1] in ("--help-commands",):
from pyquickhelper.pycode import process_standard_options_for_setup_help
process_standard_options_for_setup_help(sys.argv)
from pyquickhelper.pycode import clean_readme
from pysqllike import __version__ as sversion
long_description = clean_readme(long_description)

setup(
name=project_var_name,
version=sversion,
author='Xavier Dupré',
author_email='xavier.dupre@gmail.com',
license="MIT",
url="http://www.xavierdupre.fr/app/pysqllike/helpsphinx/index.html",
download_url="https://github.com/sdpython/pysqllike/",
description=DESCRIPTION,
long_description=long_description,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=packages,
package_dir=package_dir,
package_data=package_data,
setup_requires=["pyquickhelper"],
)
setup(
name=project_var_name,
version=read_version(__file__, project_var_name, subfolder='src'),
author='Xavier Dupré',
author_email='xavier.dupre@gmail.com',
license="MIT",
url="http://www.xavierdupre.fr/app/pysqllike/helpsphinx/index.html",
download_url="https://github.com/sdpython/pysqllike/",
description=DESCRIPTION,
long_description=read_readme(__file__),
cmdclass=default_cmdclass(),
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=packages,
package_dir=package_dir,
package_data=package_data,
setup_requires=['pyquicksetup>=0.2'],
)

0 comments on commit 3dfaef7

Please sign in to comment.