File tree Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,19 @@ universal=1
3
3
4
4
[metadata]
5
5
license_file = apache-2.0.LICENSE
6
- name = skeleton
6
+ name = extractcode
7
7
author = nexB. Inc. and others
8
8
author_email = info@aboutcode.org
9
- description = skeleton
9
+ description = A set of utilities and functions for extracting archives.
10
10
long_description = file:README.rst
11
- url = https://github.com/nexB/skeleton
11
+ url = https://github.com/nexB/extractcode
12
12
classifiers =
13
- Development Status :: 5 - Production/Stable
14
- Intended Audience :: Developers
15
- Programming Language :: Python :: 3
16
- Programming Language :: Python :: 3 :: Only
13
+ Development Status :: 5 - Production/Stable
14
+ Intended Audience :: Developers
15
+ Programming Language :: Python :: 2
16
+ Programming Language :: Python :: 3
17
17
Topic :: Software Development
18
18
Topic :: Utilities
19
- keywords =
20
19
21
20
[options]
22
21
package_dir =
@@ -25,13 +24,25 @@ packages=find:
25
24
include_package_data = true
26
25
zip_safe = false
27
26
install_requires =
27
+ commoncode >= 20.10
28
+ plugincode >= 20.09
29
+ typecode >= 20.10
30
+ typecode-libmagic >= 5.39.1.1
31
+ patch >= 1.15
32
+ extractcode-7z >= 16.5
33
+ extractcode-libarchive >= 3.4.3
34
+
28
35
setup_requires = setuptools_scm[toml] >= 4
29
36
30
37
[options.packages.find]
31
38
where =src
32
39
33
40
[options.extras_require]
34
41
testing =
35
- # upstream
36
- pytest >= 6
37
- pytest-xdist >= 2
42
+ # upstream
43
+ pytest >= 6
44
+ pytest-xdist >= 2
45
+
46
+ [options.entry_points]
47
+ console-scripts =
48
+ extractcode = extractcode.cli:extractcode
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
#
3
- # Copyright (c) 2017 nexB Inc. and others. All rights reserved.
3
+ # Copyright (c) nexB Inc. and others. All rights reserved.
4
4
# http://nexb.com and https://github.com/nexB/scancode-toolkit/
5
5
# The ScanCode software is licensed under the Apache License version 2.0.
6
6
# Data generated with ScanCode require an acknowledgment.
@@ -2767,7 +2767,6 @@ def test_extract_zip_with_weird_filenames_with_sevenzip_win(self):
2767
2767
2768
2768
2769
2769
class TestZipSlip (BaseArchiveTestCase ):
2770
- pytestmark = pytest .mark .scanslow
2771
2770
2772
2771
def test_extract_zipslip_zip_posix (self ):
2773
2772
test_file = self .get_test_loc ('archive/zipslip/zip-slip.zip' )
You can’t perform that action at this time.
0 commit comments