-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.cfg
More file actions
69 lines (62 loc) · 1.64 KB
/
Copy pathsetup.cfg
File metadata and controls
69 lines (62 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# ==============================================================================
# AUTO-blogger Configuration
# ==============================================================================
[flake8]
max-line-length = 100
extend-ignore = E501,W503,E203
exclude =
.git,
__pycache__,
build,
dist,
*.egg-info,
venv,
.venv,
website,
docs/_build
per-file-ignores =
__init__.py:F401,F403
tests/*:S101
[metadata]
name = auto-blogger
version = attr: auto_blogger.__version__
author = AryanVBW
author_email = AryanVBW@gmail.com
description = AI-Powered WordPress Automation Tool with Content Generation and SEO Optimization
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/AryanVBW/AUTO-blogger
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
keywords = wordpress, blog, automation, ai, content, seo
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.packages.find]
exclude =
tests*
docs*
scripts*
website*
[options.entry_points]
console_scripts =
autoblog = auto_blogger:cli_main
auto-blogger = auto_blogger:cli_main
gui_scripts =
autoblog-gui = auto_blogger.gui_blogger:main
[bdist_wheel]
universal = 0
[aliases]
test = pytest