Skip to content
Snippets Groups Projects
Select Git revision
  • c79441c06da496dff74f2193e7da77de3384a526
  • main default protected
  • renovate/solid_queue-1.x-lockfile
  • renovate/importmap-rails-2.x-lockfile
  • renovate/redis-5.x-lockfile
  • renovate/ruby
  • renovate/selenium-webdriver-4.x-lockfile
  • renovate/icalendar-2.x-lockfile
  • renovate/debug-1.x-lockfile
  • renovate/turbo-rails-2.x-lockfile
  • renovate/gcr.io-kaniko-project-executor-1.x
  • eh22 protected
  • update-rubocop
13 results

hello_controller.js

Blame
  • setup.py 867 B
    import os
    import setuptools
    
    with open('README.md', 'r', encoding='utf-8') as f:
    	long_description = f.read()
    
    setuptools.setup(
    	name='ldapserver',
    	version=os.environ.get('PACKAGE_VERSION', 'local'),
    	author='Julian Rother',
    	author_email='python-ldapserver@jrother.eu',
    	description='LDAP server request handler',
    	long_description=long_description,
    	long_description_content_type='text/markdown',
    	url='https://git.cccv.de/uffd/python-ldapserver',
    	classifiers=[
    		'Programming Language :: Python :: 3',
    		'Development Status :: 2 - Pre-Alpha',
    		'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
    		'Operating System :: OS Independent',
    		'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
    	],
    	package_dir={'': 'src'},
    	packages=setuptools.find_packages(where='src'),
    	python_requires='>=3.9',
    )