-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.2 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
46
[metadata]
name = fetch_hackernews
version = 1.0.8
author = Bodo Schönfeld
author_email = [email protected]
url = https://github.com/niftycode/fetch_hackernews
description = Fetch website data from https://news.ycombinator.com
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
requires_python = >=3.9
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = False
packages = find:
setup_requires =
setuptools >=70.0.0
install_requires =
beautifulsoup4
requests
setuptools
[options.entry_points]
console_scripts =
fetch_hackernews = fetch_hackernews.main:main
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal = 1