Skip to content

Commit

Permalink
refactor setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Apr 15, 2021
1 parent a19b9f8 commit de2e035
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 144 deletions.
4 changes: 2 additions & 2 deletions .local.jenkins.lin.yml
Expand Up @@ -15,12 +15,12 @@ install:
- $PYINT -m pip freeze

script:
- { CMD: "$PYINT -u setup.py unittests", NAME: "UT" }
- { CMD: "$PYINT -u setup.py unittests --covtoken=14c7930a-a5c0-405d-a22f-3f9c6feaf0bc", NAME: "UT" }

after_script:
- $PYINT -u setup.py bdist_wheel
- if [ ${NAME} == "UT" ] then cp dist/*.whl {{root_path}}/../local_pypi/local_pypi_server fi

documentation:
- if [ ${NAME} == "UT" ] then $PYINT -u setup.py build_sphinx fi
- if [ ${NAME} == "UT" ] then $PYINT -u setup.py build_sphinx --layout=html,pdf fi
- if [ ${NAME} == "UT" ] then cp -R -f _doc/sphinxdoc/build/html dist/html fi
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -10,6 +10,7 @@ Pillow
pycodestyle
pylint
pyquickhelper>=1.10
pyquicksetup
scikit-learn
scipy
sphinx
Expand Down
163 changes: 21 additions & 142 deletions setup.py
Expand Up @@ -2,8 +2,8 @@
from __future__ import print_function
import sys
import os
from setuptools import setup, Extension
from setuptools import find_packages
from setuptools import setup, Extension, find_packages
from pyquicksetup import read_version, read_readme, default_cmdclass

#########
# settings
Expand Down Expand Up @@ -36,144 +36,23 @@
package_dir = {k: os.path.join(here, 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)
must_build, run_build_ext = pyquickhelper.get_insetup_functions()

if must_build():
out = run_build_ext(__file__)
print(out)

if "build_sphinx" in sys.argv and not sys.platform.startswith("win"):
# There is an issue with matplotlib and notebook gallery on linux
# _tkinter.TclError: no display name and no $DISPLAY environment variable
import matplotlib
matplotlib.use('agg')

from pyquickhelper.pycode import process_standard_options_for_setup
r = process_standard_options_for_setup(
sys.argv, __file__, project_var_name,
unittest_modules=["pyquickhelper"],
additional_notebook_path=["pyquickhelper", "jyquickhelper"],
additional_local_path=["pyquickhelper", "jyquickhelper"],
requirements=["pyquickhelper", "jyquickhelper"],
layout=["html"], github_owner='sdpython',
add_htmlhelp=sys.platform.startswith("win"),
coverage_options=dict(omit=["*exclude*.py"]),
fLOG=logging_function, covtoken=("14c7930a-a5c0-405d-a22f-3f9c6feaf0bc", "'_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)
root = os.path.abspath(os.path.dirname(__file__))
if sys.platform.startswith("win"):
extra_compile_args = None
else:
extra_compile_args = ['-std=c++11']

from pyquickhelper.pycode import clean_readme
from pandas_streaming 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/pandas_streaming/helpsphinx/index.html",
download_url="https://github.com/sdpython/pandas_streaming/",
description=DESCRIPTION,
long_description=long_description,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=packages,
package_dir=package_dir,
package_data=package_data,
setup_requires=["pyquickhelper>=1.10"],
install_requires=['numpy', 'pandas', 'ijson'],
)
setup(
name=project_var_name,
version=read_version(__file__, project_var_name),
author='Xavier Dupré',
author_email='xavier.dupre@gmail.com',
license="MIT",
url="http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html",
download_url="https://github.com/sdpython/pandas_streaming/",
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"],
install_requires=['numpy', 'pandas', 'ijson'],
)

0 comments on commit de2e035

Please sign in to comment.