forked from vibery-studio/vibewp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1001 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1001 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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
# Remove comments and empty lines
requirements = [r.strip() for r in requirements if r.strip() and not r.startswith("#")]
setup(
name="vibewp",
version="1.4.1",
description="VPS WordPress Manager - CLI for managing WordPress sites on VPS",
author="VibeWP Team",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points={
"console_scripts": [
"vibewp=cli.main:app",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)