-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also update the README to explain the new installation option.
- Loading branch information
Showing
4 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from setuptools import setup | ||
|
||
setup() |