-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 804 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
39
# =====================================
# generator=datazen
# version=3.1.4
# hash=7afa325a6c78283f5a73152c93d9eab5
# =====================================
"""
rcmpy - Package definition for distribution.
"""
# third-party
try:
from setuptools_wrapper.setup import setup
except (ImportError, ModuleNotFoundError):
from rcmpy_bootstrap.setup import setup # type: ignore
# internal
from rcmpy import DESCRIPTION, PKG_NAME, VERSION
author_info = {
"name": "Vaughn Kottler",
"email": "vaughnkottler@gmail.com",
"username": "vkottler",
}
pkg_info = {
"name": PKG_NAME,
"slug": PKG_NAME.replace("-", "_"),
"version": VERSION,
"description": DESCRIPTION,
"versions": [
"3.10",
"3.11",
"3.12",
],
}
setup(
pkg_info,
author_info,
)