forked from alephdata/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="aleph",
version="3.8.6",
description="Document sifting web frontend",
long_description="",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords="",
author="OCCRP Data Team",
author_email="[email protected]",
url="https://github.com/alephdata/aleph/wiki",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[],
test_suite="nose.collector",
entry_points={
"aleph.init": [],
"aleph.oauth": [
"azure = aleph.oauth:handle_azure_oauth",
"google = aleph.oauth:handle_google_oauth",
"keycloak = aleph.oauth:handle_keycloak_oauth",
"cognito = aleph.oauth:handle_cognito_oauth",
"adfs = aleph.oauth:handle_adfs_oauth",
],
"console_scripts": ["aleph = aleph.manage:cli",],
},
tests_require=["coverage", "nose"],
)