-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (43 loc) · 1.12 KB
/
setup.py
File metadata and controls
44 lines (43 loc) · 1.12 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
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup # type: ignore
setup(
name="arty-mc",
version="0.3.0",
packages=find_packages(),
install_requires=[
"textual>=0.52.0",
"requests>=2.32.4",
"dohq-artifactory>=0.9.2",
"pyyaml>=6.0",
],
author="Tino Waldner",
author_email="tino.waldner@gmail.com",
description="Dual-pane terminal file manager for Artifactory",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/tino-waldner/arty-mc",
license="MIT",
keywords=[
"python",
"linux",
"cli",
"file-manager",
"terminal",
"artifactory",
"sysadmin",
"artifact-management",
"repo-browser",
"dual-pane",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Environment :: Console",
],
python_requires=">=3.9",
entry_points={
"console_scripts": [
"arty-mc=arty_mc.arty_mc:main",
],
},
)