Skip to content

Commit fc91a61

Browse files
authored
Merge pull request #148 from kjd/add-setup-cfg
Add setup cfg
2 parents a8cdc4f + 1543039 commit fc91a61

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

setup.cfg

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[metadata]
2+
name = idna
3+
version = attr: idna.__version__
4+
author = Kim Davies
5+
author_email = [email protected]
6+
description = Internationalized Domain Names in Applications (IDNA)
7+
license = BSD-3-Clause
8+
classifiers =
9+
Development Status :: 5 - Production/Stable
10+
Intended Audience :: Developers
11+
Intended Audience :: System Administrators
12+
License :: OSI Approved :: BSD License
13+
Operating System :: OS Independent
14+
Programming Language :: Python
15+
Programming Language :: Python :: 3
16+
Programming Language :: Python :: 3 :: Only
17+
Programming Language :: Python :: 3.5
18+
Programming Language :: Python :: 3.6
19+
Programming Language :: Python :: 3.7
20+
Programming Language :: Python :: 3.8
21+
Programming Language :: Python :: 3.9
22+
Programming Language :: Python :: 3.10
23+
Programming Language :: Python :: 3.11
24+
Programming Language :: Python :: 3.12
25+
Programming Language :: Python :: Implementation :: CPython
26+
Programming Language :: Python :: Implementation :: PyPy
27+
Topic :: Internet :: Name Service (DNS)
28+
Topic :: Software Development :: Libraries :: Python Modules
29+
Topic :: Utilities
30+
31+
[options]
32+
python_requires = >=3.5
33+
packages=find:
34+
35+
[options.packages.find]
36+
exclude =
37+
tests*

0 commit comments

Comments
 (0)