forked from pulp/pulp_deb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (34 loc) · 1.3 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
with open("README.md") as description:
long_description = description.read()
setup(
name="pulp-deb",
version="3.4.0.dev",
description="pulp-deb plugin for the Pulp Project",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv2+",
author="Matthias Dellweg",
author_email="dellweg@atix.de",
url="https://pulpproject.org",
python_requires=">=3.9",
install_requires=requirements,
include_package_data=True,
packages=find_packages(exclude=["tests", "tests.*"]),
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={"pulpcore.plugin": ["pulp_deb = pulp_deb:default_app_config"]},
)