diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 22:54:33 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 22:54:33 +0300 |
commit | 6d255cc2800b87165101a9c51d2216ad35e4fe03 (patch) | |
tree | 66207216a3de0dd6b5f67bad5923384658a2d41c | |
parent | .ci: rename test scripts (diff) | |
download | vk-scripts-6d255cc2800b87165101a9c51d2216ad35e4fe03.tar.gz vk-scripts-6d255cc2800b87165101a9c51d2216ad35e4fe03.zip |
add packaging metadata
-rw-r--r-- | pyproject.toml | 3 | ||||
-rw-r--r-- | setup.cfg | 25 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 30 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9787c3b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9f5bf6a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,25 @@ +[metadata] +name = vk_scripts +version = 0.1 +author = Egor Tensin +author_email = Egor.Tensin@gmail.com +description = A collection of scripts abusing VK.com API +long_description = file: README.md +long_description_content_type = text/markdown +license = MIT +url = https://github.com/egor-tensin/vk-scripts +project_urls = + Bug Tracker = https://github.com/egor-tensin/vk-scripts/issues +classifiers = + Development Status :: 4 - Beta + License :: OSI Approved :: MIT License + +[options] +packages = find: +python_requires = >=3.4 + +[options.entry_points] +console_scripts = + vk-sessions = vk.tracking.sessions + vk-status = vk.tracking.status + vk-mutuals = vk.mutuals diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a4f49f9 --- /dev/null +++ b/setup.py @@ -0,0 +1,2 @@ +import setuptools +setuptools.setup() |