CoolFace
Apppublic

crashedice/signify

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
setup.py58 linesDownload Raw Back to root
1from pkg_resources import parse_version2from configparser import ConfigParser3import setuptools, shlex4assert parse_version(setuptools.__version__)>=parse_version('36.2')5 6# note: all settings are in settings.ini; edit there, not here7config = ConfigParser(delimiters=['='])8config.read('settings.ini', encoding='utf-8')9cfg = config['DEFAULT']10 11cfg_keys = 'version description keywords author author_email'.split()12expected = cfg_keys + "lib_name user branch license status min_python audience language".split()13for o in expected: assert o in cfg, "missing expected setting: {}".format(o)14setup_cfg = {o:cfg[o] for o in cfg_keys}15 16licenses = {17    'apache2': ('Apache Software License 2.0','OSI Approved :: Apache Software License'),18    'mit': ('MIT License', 'OSI Approved :: MIT License'),19    'gpl2': ('GNU General Public License v2', 'OSI Approved :: GNU General Public License v2 (GPLv2)'),20    'gpl3': ('GNU General Public License v3', 'OSI Approved :: GNU General Public License v3 (GPLv3)'),21    'bsd3': ('BSD License', 'OSI Approved :: BSD License'),22}23statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',24    '4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]25py_versions = '3.6 3.7 3.8 3.9 3.10'.split()26 27requirements = shlex.split(cfg.get('requirements', ''))28if cfg.get('pip_requirements'): requirements += shlex.split(cfg.get('pip_requirements', ''))29min_python = cfg['min_python']30lic = licenses.get(cfg['license'].lower(), (cfg['license'], None))31dev_requirements = (cfg.get('dev_requirements') or '').split()32 33setuptools.setup(34    name = cfg['lib_name'],35    license = lic[0],36    classifiers = [37        'Development Status :: ' + statuses[int(cfg['status'])],38        'Intended Audience :: ' + cfg['audience'].title(),39        'Natural Language :: ' + cfg['language'].title(),40    ] + ['Programming Language :: Python :: '+o for o in py_versions[py_versions.index(min_python):]] + (['License :: ' + lic[1] ] if lic[1] else []),41    url = cfg['git_url'],42    packages = setuptools.find_packages(),43    include_package_data = True,44    install_requires = requirements,45    extras_require={ 'dev': dev_requirements },46    dependency_links = cfg.get('dep_links','').split(),47    python_requires  = '>=' + cfg['min_python'],48    long_description = open('README.md', encoding='utf-8').read(),49    long_description_content_type = 'text/markdown',50    zip_safe = False,51    entry_points = {52        'console_scripts': cfg.get('console_scripts','').split(),53        'nbdev': [f'{cfg.get("lib_path")}={cfg.get("lib_path")}._modidx:d']54    },55    **setup_cfg)56 57 58