-
Notifications
You must be signed in to change notification settings - Fork 116
/
setup.py
64 lines (61 loc) · 2.29 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
setup(
name="pulpcore",
version="3.68.0.dev",
description="Pulp Django Application and Related Modules",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv2+",
packages=find_packages(),
author="Pulp Team",
author_email="pulp-list@redhat.com",
url="https://pulpproject.org",
python_requires=">=3.9",
install_requires=requirements,
extras_require={
"sftp": ["django-storages[sftp]==1.14.4"],
"s3": ["django-storages[boto3]==1.14.3"],
"google": ["django-storages[google]==1.14.3"],
"azure": ["django-storages[azure]==1.14.3"],
"prometheus": ["django-prometheus"],
"kafka": [
# Pinned because project warns "things might (and will) break with every update"
"cloudevents==1.11.0",
"confluent-kafka>=2.4.0,<2.7.0",
],
},
include_package_data=True,
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
entry_points={
"console_scripts": [
"pulpcore-manager = pulpcore.app.manage:manage",
"pulpcore-worker = pulpcore.tasking.entrypoint:worker",
"pulpcore-api = pulpcore.app.entrypoint:main",
"pulpcore-content = pulpcore.content.entrypoint:main",
],
"pulpcore.plugin": [
"pulp_file = pulp_file:default_app_config",
"pulp_certguard = pulp_certguard:default_app_config",
],
"pytest11": [
"pulpcore = pulpcore.pytest_plugin",
"pulp_file = pulp_file.pytest_plugin",
"pulp_certguard = pulp_certguard.pytest_plugin",
],
},
)