Home
last modified time | relevance | path

Searched refs:setup_cfg (Results 1 – 25 of 118) sorted by relevance

12345

/dports/sysutils/py-qmk/qmk-0.1.1/
H A Dsetup.py4 setup_cfg = ConfigParser() variable
5 setup_cfg.read('setup.cfg')
6 metadata = setup_cfg['metadata']
15 'console_scripts': ['%s = %s' % i for i in setup_cfg['entry_points'].items()],
19 version=setup_cfg['bumpversion']['current_version'],
/dports/science/py-asdf/asdf-2.8.1/docs/
H A Dconf.py49 setup_cfg = dict(conf.items('metadata')) variable
72 project = setup_cfg['name']
73 author = setup_cfg['author']
75 datetime.datetime.now().year, setup_cfg['author'])
81 release = get_distribution(setup_cfg['name']).version
/dports/devel/py-milc/milc-1.4.2/
H A Dsetup.py6 setup_cfg = ConfigParser() variable
7 setup_cfg.read('setup.cfg')
8 metadata = setup_cfg['metadata']
16 version=setup_cfg['bumpversion']['current_version'],
/dports/devel/py-sip/sip-5.5.0/sipbuild/module/
H A Dmodule.py35 def module(sip_module, abi_version, project, sdist, setup_cfg, sip_h, sip_rst, argument
60 _create_sdist(sdist_dir, abi_version, patches, setup_cfg)
135 def _create_sdist(sdist_dir, abi_version, patches, setup_cfg): argument
155 if name != 'README' or setup_cfg is None:
162 if setup_cfg is not None:
163 setup_cfg_text = _install_source_file(setup_cfg, module_source_dir,
H A Dmain.py66 setup_cfg=args.setup_cfg, sip_h=args.sip_h,
/dports/devel/py-d2to1/d2to1-0.2.12.post1/d2to1/
H A Dzestreleaser.py55 setup_cfg = SetupConfig()
57 if setup_cfg.config.has_option('metadata', 'version'):
58 return setup_cfg.config.get('metadata', 'version').strip()
70 setup_cfg = SetupConfig()
71 filename = setup_cfg.config_filename
/dports/net/py-python-cinderclient/python-cinderclient-7.2.0/tools/
H A Dinstall_venv.py61 setup_cfg = configparser.ConfigParser()
62 setup_cfg.read('setup.cfg')
63 project = setup_cfg.get('metadata', 'name')
/dports/devel/py-stsci.distutils/stsci.distutils-0.3.7/stsci/distutils/
H A Drelease.py29 setup_cfg = os.path.join(workingdir, 'setup.cfg')
30 if not os.path.exists(setup_cfg):
34 cfg.read(setup_cfg)
/dports/devel/py-flake8/flake8-4.0.1/tests/unit/
H A Dtest_config_file_finder.py105 setup_cfg = tmpdir.join("setup.cfg")
107 setup_cfg.write_binary(b"[x]\ny = \x81\x8d\x90\x9d")
108 _, parsed = config.ConfigFileFinder._read_config(setup_cfg.strpath)
/dports/deskutils/timewarrior/timewarrior-1.4.3/test/
H A Dbash_tap_ti.sh14 function setup_cfg { function
54 setup_cfg
/dports/audio/py-mutagen/mutagen-1.42.0/tests/quality/
H A Dtest_pep8.py14 from .util import setup_cfg
33 style = pycodestyle.StyleGuide(ignore=setup_cfg.ignore)
H A Dtest_pyflakes.py16 from .util import setup_cfg
19 os.environ["PYFLAKES_BUILTINS"] = ",".join(setup_cfg.builtins)
/dports/science/py-nibabel/nibabel-3.2.1/tools/
H A Dupdate_requirements.py11 setup_cfg = repo_root / "setup.cfg" variable
16 config.read(setup_cfg)
/dports/multimedia/quodlibet/quodlibet-4.3.0/tests/quality/
H A Dtest_pyflakes.py14 from .util import iter_project_py_files, setup_cfg
17 os.environ["PYFLAKES_BUILTINS"] = ",".join(setup_cfg.builtins)
H A Dtest_pep8.py18 from .util import iter_project_py_files, setup_cfg
58 errors = check_files(files, ignore=setup_cfg.ignore)
H A Dutil.py44 setup_cfg = parse_setup_cfg() variable
57 skip = setup_cfg.exclude
/dports/devel/py-fastprogress/fastprogress-1.0.0/
H A Dsetup.py14 setup_cfg = {o:cfg[o] for o in cfg_keys} variable
45 **setup_cfg)
/dports/devel/py-setuptools44/setuptools-44.1.1/setuptools/tests/
H A Dtest_egg_info.py79 setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
83 ei.save_version_info(setup_cfg)
85 with open(setup_cfg, 'r') as f:
112 setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
114 setup_cfg: DALS("""
123 ei.save_version_info(setup_cfg)
125 with open(setup_cfg, 'r') as f:
/dports/astro/py-astropy/astropy-5.0/docs/
H A Dconf.py119 setup_cfg = configparser.ConfigParser() variable
120 setup_cfg.read(os.path.join(os.path.pardir, 'setup.cfg'))
121 __minimum_python_version__ = setup_cfg['options']['python_requires'].replace('>=', '')
/dports/devel/py-setuptools/setuptools-57.0.0/setuptools/tests/
H A Dtest_egg_info.py81 setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
85 ei.save_version_info(setup_cfg)
87 with open(setup_cfg, 'r') as f:
114 setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
116 setup_cfg: DALS("""
125 ei.save_version_info(setup_cfg)
127 with open(setup_cfg, 'r') as f:
/dports/devel/py-zc.buildout/zc.buildout-2.11.3/src/zc/buildout/
H A Deasy_install.py797 if not os.path.exists(setup_cfg):
798 f = open(setup_cfg, 'w')
801 setup_cfg, dict(build_ext=build_ext))
1029 if os.path.exists(setup_cfg):
1030 os.rename(setup_cfg, setup_cfg+'-develop-aside')
1032 if os.path.exists(setup_cfg):
1033 os.remove(setup_cfg)
1034 os.rename(setup_cfg+'-develop-aside', setup_cfg)
1037 f = open(setup_cfg, 'w')
1039 undo.append(lambda: os.remove(setup_cfg))
[all …]
/dports/devel/py-medikit/medikit-0.7.5/medikit/feature/
H A Dformat.py110 with event.config.get_resource("setup.cfg") as setup_cfg:
111 setup_cfg.set_managed_values({"isort": {"line_length": str(LINE_LENGTH)}})
/dports/devel/py-pbr/pbr-5.5.0/pbr/tests/
H A Dtest_integration.py86 setup_cfg = os.path.join(path, 'setup.cfg')
89 if os.path.exists(setup_cfg):
91 config.read(setup_cfg)
/dports/textproc/py-dparse/dparse-0.5.1/dparse/
H A Dfiletypes.py6 setup_cfg = "setup.cfg" variable
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/vendor/dparse/
H A Dfiletypes.py6 setup_cfg = "setup.cfg" variable

12345