-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (31 loc) · 1.18 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
"""Package setup executable.
To be called by a package manager (pip or conda or others).
NOT supposed to be executed directly (via python or py).
Tells the package manager the way to install the source directory as a package.
The "entry_points" parameter of the setup function specifies the function to call when the user enters the
corresponding command via the command line.
"""
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
# First added by username: liu-yucheng
# Last updated by username: liu-yucheng
import setuptools
_find_packages = setuptools.find_packages
_setup = setuptools.setup
def main():
_setup(
name="lyc-pyutils",
version="2.1.0",
author="Yucheng Liu",
license="Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.",
description="LYC's personal Python utilities.",
# ----
packages=_find_packages(),
entry_points={
"console_scripts": []
} # ,
# test_suite="lyc_pyutils.tests"
)
if __name__ == "__main__":
main()