-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (41 loc) · 1.43 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
from setuptools import setup, find_packages
VERSION = "0.11.0"
def get_description():
return "\
AppJail Director is a tool for running multi-jail environments on AppJail using a \
simple YAML specification. A Director file is used to define how one or more jails \
that make up your application are configured. Once you have a Director file, you \
can create and start your application with a single command: `appjail-director up`."
setup(
name="director",
version=VERSION,
description="Define and run multi-jail environments with AppJail",
long_description=get_description(),
long_description_content_type="text/markdown",
author="Jesús Daniel Colmenares Oviedo",
author_email="[email protected]",
url="https://github.com/DtxdF/director",
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
],
package_dir={"" : "src"},
packages=find_packages(where="src"),
include_package_data=True,
license="BSD 3-Clause",
license_files="LICENSE",
install_requires=[
"click",
"pyaml-env",
"python-dotenv"
],
entry_points={
"console_scripts" : [
"appjail-director = director.__init__:cli"
]
}
)