-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
test_reqs = ["pytest", "pytest-docker-fixtures", "pytest-aiohttp>=0.3.0"]
setup(
name="guillotina_ldap",
version=open("VERSION").read().strip(),
description="guillotina ldap auth support",
long_description=(open("README.rst").read() + "\n" + open("CHANGELOG.rst").read()),
long_description_content_type="text/x-rst",
classifiers=[
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author="Ramon Navarro Bosch",
author_email="[email protected]",
keywords="guillotina async ldap",
url="https://pypi.python.org/pypi/guillotina_ldap",
license="GPL version 3",
setup_requires=["pytest-runner",],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
package_data={"": ["*.txt", "*.rst"], "guillotina_ldap": ["py.typed"]},
install_requires=[
"setuptools",
"guillotina>=6.0",
"bonsai",
"retry"
],
extras_require={"test": test_reqs},
tests_require=test_reqs,
entry_points={"guillotina": ["include = guillotina_ldap",]},
)