Commit f4d899e9 authored by Kirill Smelkov's avatar Kirill Smelkov

Merge branch 'master' into t

* master: (43 commits)
  Also detect eggs that are used indirectly
  Fix reporting of multiple detected eggs
  namever: Treat rfcXXX as non-version
  fmt: Sort emitted entries ignoring their case
  Mark generic_testrunner_init as synthethic setction
  Fix namever for findutils url
  Fix support for HDF5 URL
  Fix support for libstemmer_c
  Fix support for onlyoffice_core URL
  Cloudooo uses both py2 and py3 simultaneously
  Fix support for icu4c url
  Assert that ver != ø in addbom
  Cloudooo also uses libpng1.2 and libpng1.6 simultaneously
  Fix handling of CUPS url
  Fix for LibreOffice
  Refer to nexedi.org/static if egg version has slaposXXX
  Add support for collective.recipe.template
  Fix handling of non-py2 eggs
  isconf += .cfg.jinja2
  Fix handling GeoLite2 URLs
  ...
parents 7c53370e 89548b01
/dist
/nxdbom.egg-info
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
# nxdbom | pythonic package setup
from setuptools import setup, find_packages
setup(
name = 'nxdbom',
version = '0.0.0.dev1',
description = 'Tool to generate bill of material for Nexedi-built software',
url = 'https://lab.nexedi.com/nexedi/nxd-bom',
license = 'GPLv3+ with wide exception for FOSS',
author = 'Nexedi',
author_email= 'kirr@nexedi.com',
keywords = 'Nexedi software build BOM',
packages = find_packages(),
extras_require = {
'test': ['pytest'],
},
entry_points= {'console_scripts': ['nxdbom = nxdbom:main']},
classifiers = [_.strip() for _ in """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Utilities\
""".splitlines()]
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment