mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-28 13:25:56 +00:00
48d17550a7
This release adds several new features: * Bitbake infile parsing using the --infile flag (see README) * Support override file for %description section * Default python pattern now distutils3 instead of distutils23 * Improved Rust/Cargo support * Improved 32bit make/make_install args support * Print fingerprint of imported pubkey * Change default keyring to package repository with fallback the autospec repository. * Improved output ...makes some configuration updates: * Adds several new public keys * Adds lines to configure_whitelist * Adds patterns for failed_patterns ...and makes several fixes as well: * Print guessed commitmessage as string instead of list * Fix several issues with catkin support * Follow redirects by the license server * Add a couple new URL patterns * Remove unneeded V and VERBOSE flags for make lines * Remove no-longer-used functional test suite * Turn off string interpolation for URLs containing '%' * Respect [autospec][urlban] for archive URLs Signed-off-by: Matthew Johnson <matthew.johnson@intel.com>
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
import sys, os
|
|
version = "1.2.0"
|
|
|
|
def readme():
|
|
with open("README.rst") as f:
|
|
return f.read()
|
|
|
|
setup(name="autospec",
|
|
description="Automated creation of RPM packaging",
|
|
long_description=readme(),
|
|
version = version,
|
|
license = "GPLv3",
|
|
packages = ["autospec"],
|
|
package_data = {
|
|
'': ['*.pl', '*.dic'],
|
|
},
|
|
classifiers=[
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Software Development :: Build Tools',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
# Python versions supported.
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
include_package_data = True,
|
|
)
|