aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 28b0393943cc5316e3e2f69895bae4eb41f21ab4 (plain)
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 = fingerd
version = attr: fingerd.version.version
url = https://fingerd.touhey.pro/
author = Thomas Touhey
author_email = thomas@touhey.fr
description = finger (RFC 1288) server-side daemon.
long_description = file: README.rst
keywords = finger, fingerd, rfc742, rfc1288, 79, tcp/79
license = MIT
classifiers =
	Development Status :: 3 - Alpha
	License :: OSI Approved :: MIT License
	Programming Language :: Python :: 3
	Intended Audience :: System Administrators
	Natural Language :: English
	Topic :: Internet :: Finger
	Topic :: Utilities

[options]
zip_safe = False
include_package_data = True
packages = fingerd
scripts =
  scripts/fingerd
install_requires =
  toml
  click
  pytz
  pyutmpx

[options.package_data]
* = *.txt, *.rst

[wheel]
universal = True