1+ from setuptools import setup
2+ import pathlib
3+
4+ HERE = pathlib .Path (__file__ ).parent
5+
6+ README = (HERE / "README.md" ).read_text ()
7+
8+ setup (
9+ name = "fdir-cli" ,
10+ version = "3.3.0" ,
11+ description = "Find and organize anything on your system" ,
12+ long_description = README ,
13+ long_description_content_type = "text/markdown" ,
14+ url = "https://github.com/VG-dev1/fdir" ,
15+ author = "VG-dev1" ,
16+ author_email = "vitohackergrgic@gmail.com" ,
17+ license = "MIT" ,
18+ classifiers = [
19+
20+ "Development Status :: 5 - Production/Stable" ,
21+
22+ "Intended Audience :: Developers" ,
23+ "Intended Audience :: System Administrators" ,
24+ "Topic :: System :: Systems Administration" ,
25+ "Topic :: Utilities" ,
26+
27+ "License :: OSI Approved :: MIT License" ,
28+
29+ "Programming Language :: Python :: 3" ,
30+ "Programming Language :: Python :: 3.8" ,
31+ "Programming Language :: Python :: 3.9" ,
32+ "Programming Language :: Python :: 3.10" ,
33+ "Programming Language :: Python :: 3.11" ,
34+ "Operating System :: OS Independent" ,
35+ ],
36+ keywords = "search, cli, terminal, command-line, tool, filesystem" ,
37+ py_modules = ["fdir" ],
38+ python_requires = ">=3.8" ,
39+ entry_points = {
40+ "console_scripts" : [
41+ "fdir = fdir:main" ,
42+ ],
43+ },
44+ project_urls = {
45+ "Bug Reports" : "https://github.com/VG-dev1/fdir/issues" ,
46+ "Source" : "https://github.com/VG-dev1/fdir" ,
47+ },
48+ )
0 commit comments