-
Notifications
You must be signed in to change notification settings - Fork 333
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 751 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 751 Bytes
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
from setuptools import setup, find_packages
setup(
name="aleph",
version="4.1.7",
description="Document sifting web frontend",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
author="OCCRP Data Team",
author_email="data@occrp.org",
url="https://docs.aleph.occrp.org",
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={
"console_scripts": ["aleph = aleph.manage:cli"],
},
tests_require=["coverage", "nose"],
)