-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 932 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 932 Bytes
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
# ------------------------------------------
# Copyright (c) Rygor. 2025.
# ------------------------------------------
"""Minimal setup file for tasks project."""
from setuptools import setup, find_packages
setup(
name='sap.cli',
version='3.7.0',
license='MIT',
description='Command line tool for launching SAP systems from SAPLogon',
author='Rygor',
author_email='pisemco@gmail.com',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
## https://setuptools.pypa.io/en/latest/userguide/datafiles.html
# package_data={'sap': ['*.ini']},
install_requires=['click', 'SQLAlchemy', 'sqlalchemy_utils', 'cryptography', 'pyperclip', 'prettytable',
'six', 'pyzipper', 'rich', 'click_log', 'pyautogui', 'rich_click'],
entry_points={
'console_scripts': [
'sap = sap.cli:sap_cli',
]
},
)