mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-23 16:05:50 +00:00
8bc25eebe3
This release adds quoting ("") around filenames with whitespace in them.
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.1.1"
|
|
|
|
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,
|
|
)
|