1
+ [build-system ]
2
+ requires = [
3
+ " setuptools >= 40.8.0" ,
4
+ " wheel >= 0.29.0" ,
5
+ ]
6
+ build-backend = ' setuptools.build_meta'
7
+
8
+ [project ]
9
+ name = " pulp_python"
10
+ version = " 3.13.0.dev"
11
+ description = " pulp-python plugin for the Pulp Project"
12
+ readme = " README.md"
13
+ authors = [
14
+ {
name =
" Pulp Team" ,
email =
" [email protected] " },
15
+ ]
16
+ classifiers =[
17
+ " License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)" ,
18
+ " Operating System :: POSIX :: Linux" ,
19
+ " Development Status :: 5 - Production/Stable" ,
20
+ " Framework :: Django" ,
21
+ " Programming Language :: Python" ,
22
+ " Programming Language :: Python :: 3" ,
23
+ " Programming Language :: Python :: 3.9" ,
24
+ ]
25
+ requires-python = " >=3.9"
26
+ dependencies = [
27
+ " pulpcore>=3.49.0,<3.70" ,
28
+ " pkginfo>=1.10.0,<1.12.0" , # Twine has <1.11 in their requirements
29
+ " bandersnatch>=6.3,<7.0" , # Anything >6.3 requires Python 3.10+
30
+ " pypi-simple>=1.5.0,<2.0" ,
31
+ ]
32
+
33
+ [project .urls ]
34
+ Homepage = " https://pulpproject.org"
35
+ Documentation = " https://pulpproject.org/pulp_python/"
36
+ Repository = " https://github.com/pulp/pulp_python"
37
+ "Bug Tracker" = " https://github.com/pulp/pulp_python/issues"
38
+ Changelog = " https://pulpproject.org/pulp_python/changes/"
39
+
40
+ [project .entry-points ."pulpcore .plugin" ]
41
+ pulp_python = " pulp_python:default_app_config"
42
+
43
+ [project .entry-points ."pytest11" ]
44
+ pulp_python = " pulp_python.pytest_plugin"
45
+
46
+ [tool .setuptools .packages .find ]
47
+ where = [" ." ]
48
+
1
49
[tool .towncrier ]
2
50
package = " pulp_python"
3
51
filename = " CHANGES.md"
@@ -10,21 +58,15 @@ underlines = ["", "", ""]
10
58
11
59
[tool .check-manifest ]
12
60
ignore = [
13
- " .bumpversion.cfg" ,
14
- " .pep8speaks.yml" ,
15
61
" CHANGES/**" ,
16
- " CONTRIBUTING.rst" ,
17
- " HISTORY.rst" ,
18
62
" dev_requirements.txt" ,
19
63
" doc_requirements.txt" ,
20
64
" docs/**" ,
21
- " staging_docs/**" ,
22
65
" template_config.yml" ,
23
- " .travis/**" ,
24
- " .travis.yml" ,
66
+ " .pep8speaks.yml" ,
25
67
" shelf_reader-0.1-py2-none-any.whl" ,
26
- " .github/**" ,
27
68
" .ci/**" ,
69
+ " .github/**" ,
28
70
" lint_requirements.txt" ,
29
71
" .flake8" ,
30
72
]
@@ -58,4 +100,4 @@ search = "version = \"{current_version}\""
58
100
replace = " version = \" {new_version}\" "
59
101
60
102
[[tool .bumpversion .files ]]
61
- filename = " ./setup.py"
103
+ filename = " ./setup.py"
0 commit comments