-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 1.1 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
#!/usr/bin/env python
"""
Build script for dnf-langpacks
"""
from setuptools import setup, find_packages
setup(name="dnf-langpacks",
version='0.15.1',
packages=find_packages(),
description="Automatic installation of langpacks of packages being installed.",
author='Parag Nemade',
author_email='pnemade@redhat.com',
license='GPLv2+',
platforms=["Linux"],
data_files=[('/usr/lib/python2.7/site-packages/dnf-plugins', ['langpacks.py']),
('/usr/share/man/man8', ['dnf.plugin.langpacks.8']),
('/etc/dnf/plugins/', ['langpacks.conf'])],
classifiers=['License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)