forked from package-url/packageurl-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
90 lines (85 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[metadata]
name = packageurl-python
version = 0.10.4
license = MIT
description = A purl aka. Package URL parser and builder
long_description = file:README.rst
author = the purl authors
url = https://github.com/package-url/packageurl-python
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
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 :: 3.10
Topic :: Software Development :: Libraries
Topic :: Utilities
keywords =
package
url
package manager
package url
license_files =
- mit.LICENSE
- AUTHORS.rst
- README.rst
- CONTRIBUTING.rst
- CHANGELOG.rst
[options]
python_requires = >=3.6
packages = find:
package_dir = =src
include_package_data = true
zip_safe = false
install_requires =
[options.packages.find]
where = src
[options.extras_require]
test =
pytest
isort
black
build =
wheel
[isort]
force_single_line = True
line_length = 100
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
norecursedirs =
.git
tmp
dist
build
_build
local
ci
docs
man
share
samples
.cache
.settings
Include
include
Lib
lib
Scripts
thirdparty
tmp
src/packageurl/contrib
python_files = *.py
python_classes=Test
python_functions=test
addopts =
-rfExXw
--strict-markers
--ignore setup.py
--doctest-modules