moulinette/setup.py

71 lines
1.4 KiB
Python
Raw Normal View History

2014-05-16 15:35:16 +02:00
#!/usr/bin/env python
2014-05-16 15:35:16 +02:00
import os
import sys
2021-09-21 00:14:17 +02:00
import subprocess
2019-07-28 19:43:28 +02:00
from setuptools import setup, find_packages
from moulinette import env
2014-05-16 15:35:16 +02:00
2021-09-21 00:14:58 +02:00
version = (
subprocess.check_output(
"head debian/changelog -n1 | awk '{print $2}' | tr -d '()'", shell=True
)
.decode()
.strip()
)
LOCALES_DIR = env["LOCALES_DIR"]
2014-05-16 15:35:16 +02:00
# Extend installation
locale_files = []
2014-05-16 15:35:16 +02:00
if "install" in sys.argv:
# Evaluate locale files
2021-08-23 15:25:51 +02:00
for f in os.listdir("locales"):
if f.endswith(".json"):
locale_files.append("locales/%s" % f)
2014-05-16 15:35:16 +02:00
install_deps = [
2021-08-23 15:25:51 +02:00
"psutil",
"pytz",
"pyyaml",
"toml",
"gevent-websocket",
"bottle",
2021-09-23 01:01:01 +02:00
"prompt-toolkit==1.0.15", # To be bumped to debian version once we're on bullseye (+ need tweaks in cli.py)
"pygments",
]
test_deps = [
2021-08-23 15:25:51 +02:00
"pytest",
"pytest-cov",
"pytest-env",
"pytest-mock",
2021-09-17 16:23:01 +02:00
"mock",
2021-08-23 15:25:51 +02:00
"requests",
"requests-mock",
"webtest",
]
2021-09-21 00:14:17 +02:00
extras = {
2021-08-23 15:25:51 +02:00
"install": install_deps,
"tests": test_deps,
}
2021-08-23 15:25:51 +02:00
setup(
name="Moulinette",
2021-09-21 00:14:17 +02:00
version=version,
2021-08-23 15:25:51 +02:00
description="Prototype interfaces quickly and easily",
author="Yunohost Team",
author_email="yunohost@yunohost.org",
2021-09-21 00:14:17 +02:00
url="https://yunohost.org",
2021-08-23 15:25:51 +02:00
license="AGPL",
packages=find_packages(exclude=["test"]),
data_files=[(LOCALES_DIR, locale_files)],
python_requires=">=3.7.*, <3.10",
2021-08-23 15:25:51 +02:00
install_requires=install_deps,
tests_require=test_deps,
extras_require=extras,
)