Files
pymod2pkg/setup.cfg
Tony Breeds e72a16d6d9 Add reqs2pkg
This tool reads in one or more python requirements files and generates
a list of distribution specific package names  the intent is to use it
something like:

  sudo ${package_manager} install $(deps2pkg -r requirements.txt -b)
  sudo pip install .

To install a python project that runs against the distribution provided
pagages rather than pypi wheels/dists

Change-Id: Icd0720311e7863190b84aa916f13e7efa830a4eb
2022-09-06 12:37:13 +10:00

28 lines
760 B
INI

[metadata]
name = pymod2pkg
summary = python module name to package name map
description_file =
README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/pymod2pkg/latest/
python_requires = >=3.6
classifier =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Topic :: Software Development :: Libraries
Topic :: Utilities
[entry_points]
console_scripts =
pymod2pkg = pymod2pkg.cli.pymod2pkg:main
reqs2pkg = pymod2pkg.cli.reqs2pkg:main
[files]
packages =
pymod2pkg