-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (38 loc) · 1.15 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
[metadata]
name = miniircd
version = attr: miniircd.VERSION
description = A very simple Internet Relay Chat (IRC) server
long_description = file: README.md
long_description_content_type = text/markdown
author = Joel Rosdahl
author_email = [email protected]
maintainer = Joel Rosdahl
maintainer_email = [email protected]
url = https://github.com/jrosdahl/miniircd
license = GPLv2
keywords = IRC
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
py_modules = miniircd
entry_points = file: entry_points.txt
[options.extras_require]
dev =
mypy
pyflakes
pycodestyle
nose
twine
pep517