-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (26 loc) · 859 Bytes
/
setup.py
File metadata and controls
33 lines (26 loc) · 859 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
33
from pathlib import Path
from setuptools import setup, find_packages
"""
look into curses for the terminal UI
also look into this: https://github.com/charmbracelet/gum
also look into this: https://github.com/petereon/beaupy
read through this whenever you want to update this file:
https://click.palletsprojects.com/en/8.1.x/setuptools/
read through here for autocomplete specs:
https://fig.io/docs/getting-started/first-completion-spec
"""
setup(
name='cliutils',
version='0.1.0',
package_dir={'': 'src'},
packages=find_packages(where='src'),
package_data={"": ["*.yaml", "*.txt", "*.md"]},
author="Corey Gaunt",
url="https://github.com/CoreyGaunt/cli_utils",
entry_points={
'console_scripts': [
'cliutils=cliutils.__main__:main',
],
},
install_requires=Path("requirements.txt").read_text().splitlines(),
)