-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (39 loc) · 1.04 KB
/
setup.cfg
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
[metadata]
name = packpath
version = attr: packpath.__version__
description = Automatically upload Signal stickers from a given path and YAML configuration
license = AGPL-3.0-only
author = Diego Escalante Urrelo
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Affero General Public License v3
Programming Language :: Python :: 3.9
Programming Language :: Python
Topic :: Communications :: Chat
Topic :: Utilities
url = https://github.com/diegoe/packpath
project_urls =
GitHub = https://github.com/diegoe/packpath
[options]
include_package_data = True
packages= find:
install_requires =
signalstickers-client>=3.1.0
PyYAML>=5.4.1
[options.entry_points]
console_scripts =
packpath = packpath.__main__:main
[flake8]
max-line-length = 119
ignore =
E501
extend-exclude =
build
dist
*.egg-info
venv