File: setup.cfg

package info (click to toggle)
python-titlecase 2.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: python: 547; makefile: 4
file content (54 lines) | stat: -rw-r--r-- 1,519 bytes parent folder | download | duplicates (2)
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
[metadata]
name = titlecase
author = Stuart Colville
maintainer = Pat Pannuto
maintainer_email = pat.pannuto+titlecase@gmail.com
description = Python Port of John Gruber's titlecase.pl
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/ppannuto/python-titlecase
project_urls =
    PyPI = https://pypi.org/project/titlecase/
    conda-forge = https://anaconda.org/conda-forge/titlecase
    Source Code = https://github.com/ppannuto/python-titlecase
    Bug Tracker = https://github.com/ppannuto/python-titlecase/issues

classifiers =
    Development Status :: 5 - Production/Stable
    Intended Audience :: Developers
    Operating System :: OS Independent
    Programming Language :: Python
    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 :: Implementation :: CPython
    License :: OSI Approved :: MIT License
    Natural Language :: English
    Topic :: Text Processing :: Filters
license = MIT
license_files = [LICENSE.txt]
keyword =
    string formatting

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

[options.extras_require]
regex =
    regex >=2020.4.4

[options.entry_points]
console_scripts =
    titlecase = titlecase.__init__:cmd

[bdist_wheel]
universal = 1

[devpi:upload]
no_vcs = 1
formats = bdist_wheel