-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
88 lines (80 loc) · 2.12 KB
/
setup.cfg
File metadata and controls
88 lines (80 loc) · 2.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = RoundBox
author = Zaharia Constantin
version = attr: RoundBox.__version__
url = https://github.com/soulraven/roundBox
author_email = constantin.zaharia@progeek.ro
description = Just a small framework inspired by Django and HomeAssistant used for IoT monitoring and automation
long_description = file: README.md
long_description_content_type = text/markdown
keywords = framework iot small
license = GPLv3
license_file = LICENSE
classifiers =
Intended Audience :: Developers
Topic :: Software Development :: Libraries
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
projects_urls =
Source = https://github.com/soulraven/roundbox
Issues = https://github.com/soulraven/roundbox/issues
Discussions = https://github.com/soulraven/roundbox/discussions
Documentation = https://soulraven.github.io/roundbox/
Releases = https://soulraven.github.io/roundbox/releases
[options]
python_requires = >= 3.10
packages = find:
include_package_data = true
zip_safe = false
install_requires =
poetry
asgiref
ciso8601
colorama
pip
pywatchman
PyYAML
requests
setproctitle
unicode_slugify
setup_requires =
black
isort
[options.entry_points]
console_scripts =
roundbox-admin = RoundBox.core.cliparser:exec_from_cli
[options.extras_require]
docs =
mkdocs
mkdocs-material
mkdocs-coverage
mkdocs-literate-nav
mkdocs-gen-files
mkdocs-material-extensions
mkdocs-awesome-pages-plugin
mkdocs-autolinks-plugin
mkdocs-pagenav-generator
tests =
pytest
pytest-cookies
coverage =
coverage
pre-commit
[bdist_wheel]
universal = true
[sdist]
formats = zip, gztar
[flake8]
max-line-length = 88
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203
doctests = True
[isort]
profile = black
py_version = 310