-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
33 lines (31 loc) · 1015 Bytes
/
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
[metadata]
name = github_release_notifier
version = attr: github_release_notifier.__version__
description = Get notified when a specific package got a new release on Github
long_description = file: README.rst
author = Jay MOULIN
url = https://github.com/femtopixel/github-release-notifier/
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Communications
Topic :: Internet
Topic :: Software Development :: Pre-processors
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
[options]
include_package_data = True
packages = find:
install_requires =
feedparser
requests
python_requires = >=3
[options.entry_points]
console_scripts =
github-release-notifier = github_release_notifier.cli:main
grn = github_release_notifier.cli:main