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
|
[metadata]
name = find_libpython
version = attr: find_libpython.__version__
url = https://github.com/ktbarrett/find_libpython
author = Takafumi Arakaki
maintainer = Kaleb Barrett
maintainer_email = dev.ktbarrett@gmail.com
license = MIT
description = Finds the libpython associated with your environment, wherever it may be hiding
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
libpython
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries
[options]
packages =
find_libpython
package_dir =
= src
[options.entry_points]
console_scripts =
find_libpython = find_libpython:main
|