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 15, 2021
1 parent 52b7be3 commit 163bbce
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 133 deletions.
6 changes: 3 additions & 3 deletions .local.jenkins.lin.yml
Expand Up @@ -16,12 +16,12 @@ install:
- $PYINT -m pip freeze

script:
- { CMD: "$PYINT -u setup.py unittests", NAME: "UT" }
- { CMD: "$PYINT -u setup.py unittests --covtoken=edb05dc5-c703-4043-a0fa-aeabda20fa27", NAME: "UT" }

after_script:
- $PYINT -u setup.py bdist_wheel
- if [ ${VERSION} == "3.9" and ${DIST} != "conda" and ${NAME} == "UT" ] then cp dist/*.whl {{root_path}}/../local_pypi/local_pypi_server fi
- if [ ${VERSION} == "3.9" and ${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 fi
- if [ ${NAME} == "UT" ] then cp -R -f _doc/sphinxdoc/build/html dist/html fi
3 changes: 2 additions & 1 deletion requirements.txt
Expand Up @@ -12,7 +12,8 @@ missingno
pycodestyle
pylint>=2.4.2
pyopenssl
pyquickhelper>=1.9.3325
pyquickhelper>=1.10
pyquicksetup
python-multipart
sphinx
sphinxcontrib.blockdiag
Expand Down
152 changes: 23 additions & 129 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 @@ -47,131 +47,25 @@
}


############
# 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,
unittest_modules=["pyquickhelper"],
layout=["html"],
additional_notebook_path=["pyquickhelper", "pandas_streaming",
"pymyinstall", "jyquickhelper"],
additional_local_path=["pyquickhelper", "pandas_streaming",
"pymyinstall", "jyquickhelper"],
requirements=["pyquickhelper", "pymyinstall"],
add_htmlhelp=sys.platform.startswith("win"),
coverage_options=dict(omit=["*exclude*.py"]),
github_owner="sdpython",
fLOG=logging_function, covtoken=("edb05dc5-c703-4043-a0fa-aeabda20fa27", "'_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 mathenjeu 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/mathenjeu/helpsphinx/index.html",
download_url="https://github.com/sdpython/mathenjeu/",
description=DESCRIPTION,
long_description=long_description,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=packages,
package_dir=package_dir,
package_data=package_data,
setup_requires=["pyquickhelper"],
install_requires=['aiofiles', 'itsdangerous', 'jinja2', 'lightmlrestapi',
'numpy', 'pandas', 'python-multipart',
'starlette>=0.11.0', 'hypercorn', 'pyopenssl'],
)
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/mathenjeu/helpsphinx/index.html",
download_url="https://github.com/sdpython/mathenjeu/",
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=['aiofiles', 'itsdangerous', 'jinja2', 'lightmlrestapi',
'numpy', 'pandas', 'python-multipart',
'starlette>=0.11.0', 'hypercorn', 'pyopenssl'],
)

0 comments on commit 163bbce

Please sign in to comment.