-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (53 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
VERSION = "0.0.1"
def get_description():
return "\
Overlord is a fast, distributed orchestrator for FreeBSD jails oriented to GitOps. \
You define a file with the service intended to run on your cluster and deployment \
takes seconds to minutes."
setup(
name="overlord",
version=VERSION,
description="Deploy FreeBSD jails as fast as you code",
long_description=get_description(),
long_description_content_type="text/markdown",
author="Jesús Daniel Colmenares Oviedo",
author_email="DtxdF@disroot.org",
url="/~https://github.com/DtxdF/overlord",
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",
"tornado",
"httpx[h2,brotli,zstd]",
"aiostalk",
"psutil",
"pymemcache",
"pyjwt",
"aiofiles",
"humanfriendly",
"ifaddr",
"asciitree",
"etcd3gw",
"dnspython",
"pyyaml"
],
entry_points={
"console_scripts" : [
"overlord = overlord.__init__:cli"
]
}
)