Skip to content
Snippets Groups Projects
Commit cc4fd2f6 authored by Julian Rother's avatar Julian Rother
Browse files

Added setup.py

parent 13ff3ec2
No related branches found
No related tags found
No related merge requests found
__pycache__
docs/_build/
dist/
*.egg-info
__pycache__
*.pyc
*.pyo
setup.py 0 → 100644
import setuptools
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='ldapserver',
version='0.0.1.dev0',
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',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment