-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.23 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
# Helper function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='supportutils-scrub',
version='1.0',
description='Utility to sanitize and remove sensitive data from supportconfig tarballs',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Ronald Pina',
author_email='ronald.pina@suse.com',
url='https://github.com/pinaronald/supportutils-scrub',
license='GPL-2.0',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
entry_points={
'console_scripts': [
'supportutils-scrub=supportutils_scrub.main:main',
],
},
data_files=[
('/etc/supportutils-scrub', ['config/supportutils-scrub.conf']),
('/usr/share/man/man8', ['man/supportutils-scrub.8']),
('/usr/share/man/man5', ['man/supportutils-scrub.conf.5']),
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)