File: setup.cfg

package info (click to toggle)
python-hupper 1.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 344 kB
  • sloc: python: 1,668; makefile: 149
file content (77 lines) | stat: -rw-r--r-- 1,675 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[metadata]
name = hupper
version = 1.12
author = Michael Merickel
author_email = pylons-discuss@googlegroups.com
license = MIT
license_files = LICENSE.txt
description = Integrated process monitor for developing and reloading daemons.
long_description = file:README.rst
long_description_content_type = text/x-rst
keywords = 
	server
	daemon
	autoreload
	reloader
	hup
	file
	watch
	process
url = https://github.com/Pylons/hupper
project_urls = 
	Documentation = https://docs.pylonsproject.org/projects/hupper/en/latest/
	Changelog = https://docs.pylonsproject.org/projects/hupper/en/latest/changes.html
	Issue Tracker = https://github.com/Pylons/hupper/issues
classifiers = 
	Development Status :: 5 - Production/Stable
	Intended Audience :: Developers
	License :: OSI Approved :: MIT License
	Natural Language :: English
	Programming Language :: Python :: 3
	Programming Language :: Python :: 3.7
	Programming Language :: Python :: 3.8
	Programming Language :: Python :: 3.9
	Programming Language :: Python :: 3.10
	Programming Language :: Python :: 3.11
	Programming Language :: Python :: Implementation :: CPython
	Programming Language :: Python :: Implementation :: PyPy

[options]
package_dir = 
	= src
packages = find:
zip_safe = False
include_package_data = True
python_requires = >=3.7

[options.packages.find]
where = src

[options.entry_points]
console_scripts = 
	hupper = hupper.cli:main

[options.extras_require]
docs = 
	watchdog
	setuptools
	Sphinx
	pylons-sphinx-themes
testing = 
	watchdog
	pytest
	pytest-cov
	mock

[check-manifest]
ignore-default-rules = true
ignore = 
	.gitignore
	PKG-INFO
	*.egg-info
	*.egg-info/*

[egg_info]
tag_build = 
tag_date = 0