-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.09 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyckify",
version="0.1.3",
author="ReiDoBrega",
author_email="pedro94782079@gmail.com",
description="A modern interactive terminal picker for creating interactive command-line selection interfaces",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ReiDoBrega/pyckify",
license="MIT",
packages=find_packages(),
install_requires=[
"rich>=13.0.0",
"windows-curses>=2.2.0; platform_system=='Windows'",
],
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=[
"terminal", "gui", "pick", "pyckify", "selection", "ui", "rich", "curses"
],
project_urls={
"Homepage": "https://github.com/ReiDoBrega/pyckify",
"Repository": "https://github.com/ReiDoBrega/pyckify",
},
)