File: setup.cfg

package info (click to toggle)
dtrx 8.5.3-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,756 kB
  • sloc: python: 1,841; javascript: 51; makefile: 37; sh: 21
file content (40 lines) | stat: -rw-r--r-- 1,319 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
[metadata]
name = dtrx
version = attr: dtrx.dtrx.VERSION
description = Script to intelligently extract multiple archive types
long_description = file: README.md
long_description_content_type = text/markdown
author = Brett Smith
author_email = brettcsmith@brettcsmith.org
license = GNU General Public License version 3 or later
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Console
    Intended Audience :: End Users/Desktop
    Intended Audience :: System Administrators
    License :: OSI Approved :: GNU General Public License (GPL)
    Natural Language :: English
    Operating System :: POSIX
    Programming Language :: Python
    Programming Language :: Python :: 2
    Programming Language :: Python :: 3
    Programming Language :: Python :: Implementation :: CPython
    Topic :: Utilities
download_url = https://github.com/dtrx-py/dtrx
project_urls =
    homepage = http://www.brettcsmith.org/2007/dtrx/
    code = https://github.com/dtrx-py/dtrx

[options]
packages = dtrx
install_requires =
    subprocess32;python_version < '3.3'
    unsupported-python==1.0.0;platform_system=="Windows"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*

[options.entry_points]
console_scripts =
    dtrx = dtrx.dtrx:main

[bdist_wheel]
universal = 1