-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.53 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.53 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
#!/usr/bin/env python3
"""Setup configuration for phoenixnebula."""
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="phoenixnebula-cli",
version="1.0.3",
author="Salih",
author_email="[email protected]",
description="A feature-rich, customizable Unix shell with themes and job control",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SysTechSalihY/phoenixnebula",
project_urls={
"Bug Tracker": "https://github.com/SysTechSalihY/phoenixnebula/issues",
"Documentation": "https://github.com/SysTechSalihY/phoenixnebula",
"Source Code": "https://github.com/SysTechSalihY/phoenixnebula",
},
packages=find_packages(),
py_modules=["phoenixnebula"],
python_requires=">=3.11",
entry_points={
"console_scripts": [
"phoenixnebula=phoenixnebula.phoenixnebula:main",
],
},
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: POSIX :: BSD",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Shells",
],
keywords="shell terminal bash cli interactive",
)