-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (34 loc) · 1.16 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
[metadata]
name = slackclipper
version = 0.3.0
url = https://github.com/hraftery/slackclipper
author = Heath Raftery
author_email = [email protected]
description = Copy the contents of a Slack thread.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
py_modules =
# All py_modules install as files in site-packages, so must be unique. A common
# prefix is best way I've found for code hiding, without resorting to a package.
slackclipper
slackclipper_runner
python_requires = >=3.7
install_requires =
# slacktokens takes care of leveldb and pycookiecheat-slack dependencies.
# It's a sister project (they're going up together), so safe to require latest.
slacktokens
requests==2.27.1
pyperclip==1.8.2
[options.entry_points]
console_scripts =
slackclipper = slackclipper_runner:main