-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 802 Bytes
/
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
# =====================================
# generator=datazen
# version=3.1.4
# hash=0f7a29be3d6d2d50603e377499ca435f
# =====================================
"""
runtimepy - Package definition for distribution.
"""
# third-party
try:
from setuptools_wrapper.setup import setup
except (ImportError, ModuleNotFoundError):
from runtimepy_bootstrap.setup import setup # type: ignore
# internal
from runtimepy import DESCRIPTION, PKG_NAME, VERSION
author_info = {
"name": "Vaughn Kottler",
"email": "[email protected]",
"username": "vkottler",
}
pkg_info = {
"name": PKG_NAME,
"slug": PKG_NAME.replace("-", "_"),
"version": VERSION,
"description": DESCRIPTION,
"versions": [
"3.12",
"3.13",
],
}
setup(
pkg_info,
author_info,
)