-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (46 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
from setuptools import setup
setup(
name="aileen",
description="The Aileen project - A data-driven service layer for Humanitarian Aid",
author="Seita BV, PNGK BV",
keywords=[],
version="0.2.1",
install_requires=[
"pre-commit",
"black",
"python-dotenv",
"Click",
"django==1.11.29",
"django-bootstrap3",
"django-geojson",
"django-leaflet",
"django-cors-headers",
"django-pandas",
"jsonfield",
"humanize",
"libtmux",
"netifaces",
"numpy",
"pandas",
"pexpect",
"pytz",
"requests",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "requests"],
packages=["aileen"],
include_package_data=True,
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
],
long_description="""\The Aileen box gathers data on location and uploads it to the Aileen server.
It works robustly, in low-bandwith environments and in a privacy-friendly manner, if needed.
It is versatile (customisable) w.r.t. to the kind of information being gathered.
""",
scripts=['bin/aileen-box-install'] #, 'bin/aileen-box-start', 'bin/aileen-box-stop'],
)