-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (41 loc) · 1 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
from setuptools import find_packages, setup
setup(
name="xbbs",
version="0.0.1",
description="A dependency-resolving distributed build server for xbstrap",
author="Arsen Arsenovic",
author_email="arsen@aarsen.me",
packages=find_packages(),
license="AGPL-3.0-only",
install_requires=[
"attrs",
"gunicorn",
"gevent",
"flask",
"Jinja2",
"xbstrap",
"pyzmq",
"toml",
"logbook",
"msgpack",
"valideer",
"requests",
"humanize",
# required to decompress repodata into tar
"zstandard",
],
extras_require={
"history": [
"psycopg",
"psycopg[c] ; platform_python_implementation == 'CPython'",
]
},
include_package_data=True,
entry_points={
"console_scripts": [
"xbbs-coordinator = xbbs.coordinator:main",
"xbbs-cli = xbbs.cli:main",
"xbbs-worker = xbbs.worker:main"
]
}
)