Skip to content
Snippets Groups Projects
Select Git revision
  • f43bc6cd6b3bcbb78fc52199db4c2b04e8852aca
  • master default protected
  • claims-in-idtoke
  • jwt_encode_inconsistencies
  • recovery-code-pwhash
  • incremental-sync
  • redis-rate-limits
  • typehints
  • v1.2.x
  • v1.x.x
  • v1.1.x
  • feature_invite_validuntil_minmax
  • Dockerfile
  • v1.0.x
  • roles-recursive-cte
  • v2.3.1
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.2.0
  • v1.1.2
  • v1.1.1
  • v1.0.2
  • v1.1.0
  • v1.0.1
  • v1.0.0
  • v0.3.0
  • v0.2.0
  • v0.1.5
  • v0.1.4
  • v0.1.2
33 results

run.py

Blame
  • Forked from uffd / uffd
    Source project has a limited visibility.
    setup.py 988 B
    from setuptools import setup, find_packages
    import os
    
    with open('README.md', 'r', encoding='utf-8') as f:
    	long_description = f.read()
    
    setup(
    	name='uffd',
    	version=os.environ.get('PACKAGE_VERSION', 'local'),
    	description='UserFerwaltungsFrontend: Ldap based single sign on and user management web software',
    	long_description=long_description,
    	long_description_content_type='text/markdown',
    	url='https://git.cccv.de/uffd/uffd',
    	classifiers=[
    		'Programming Language :: Python :: 3',
    		'Development Status :: 4 - Beta',
    		'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
    		'Operating System :: OS Independent',
    		'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
    		'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
    		'Environment :: Web Environment',
    		'Framework :: Flask',
    	],
    	author='CCCV',
    	author_email='it@cccv.de',
    	license='AGPL3',
    	packages=find_packages(),
    	zip_safe=False,
    	python_requires='>=3.7',
    )