Skip to content

argparse install requires option is not needed in Python >= 3.2 #65

@1letter

Description

@1letter

i installed OCRmyPDF and node.ext.ldap in a project, the argparse egg from pypi breaks OCRmyPDF, i think the python builtin argparse module is enough.

@jensens i can't made an PR, because i have no permissions on this project

# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import codecs
import os
import sys

def read_file(name):
    with codecs.open(
        os.path.join(os.path.dirname(__file__), name),
        encoding='utf-8'
    ) as f:
        return f.read()

def get_install_requires():

    packages = [
        'bda.cache',
        'node.ext.ugm>=1.0',
        'passlib',
        'python-ldap>=2.4.14',
        'setuptools',
        'argparse'
    ]

    if sys.version_info >= (3,2):
        packages.remove('argparse')
    
    return packages

install_requires = get_install_requires()

version = '1.1.dev0'
shortdesc = 'LDAP/AD convenience with Node-trees based on python-ldap'
longdesc = '\n\n'.join([read_file(name) for name in [
    'README.rst',
    'CHANGES.rst',
    'TODO.rst',
    'LICENSE.rst'
]])


setup(
    name='node.ext.ldap',
    version=version,
    description=shortdesc,
    long_description=longdesc,
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: BSD License',
        'Intended Audience :: Developers',
        'Operating System :: OS Independent',
        'Topic :: Software Development',
        'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10'
    ],
    keywords='ldap authentication node tree access users groups',
    author='Node Contributors',
    author_email='dev@conestack.org',
    url='https://github.com/conestack/node.ext.ldap',
    license='Simplified BSD',
    packages=find_packages('src'),
    package_dir={'': 'src'},
    namespace_packages=['node', 'node.ext'],
    include_package_data=True,
    zip_safe=False,
    install_requires=install_requires,
    extras_require={
        'test': [
            'coverage',
            'plone.testing',
            'zope.configuration',
            'zope.testing',
            'zope.testrunner'
        ]
    },
    entry_points="""
    [console_scripts]
    testldap = node.ext.ldap.main:slapd
    """,
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions