-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
executable file
·33 lines (29 loc) · 1.07 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
with open("README.rst") as f:
long_description = f.read()
setup(
name="pulp-certguard",
version="1.9.0.dev",
description="Certguard plugin for the Pulp Project (transitional dummy package)",
long_description=long_description,
license="GPLv2+",
author="Pulp Project Developers",
author_email="[email protected]",
url="https://docs.pulpproject.org/pulp_certguard/",
python_requires=">=3.8",
install_requires=requirements,
include_package_data=True,
packages=find_packages(exclude=["pulp_certguard.tests"]),
classifiers=(
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
),
)