-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
51 lines (42 loc) · 1.69 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import sys
from spec2scl.version import version
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
if sys.version_info < (2, 7):
install_requires = ['jinja2', 'argparse']
else:
install_requires = ['jinja2']
description = "spec2scl is a tool to convert RPM specfiles to SCL-style specfiles."
setup(
name='spec2scl',
version=version,
description="Convert RPM specfiles to SCL-style.",
long_description=description,
keywords='rpm, spec, specfile, convert, scl, dsc',
author='Slavek Kabrda, Robert Kuska, Iryna Shcherbina',
maintainer='Jan Staněk',
maintainer_email='[email protected]',
url='https://bitbucket.org/bkabrda/spec2scl/',
license='MIT',
packages=find_packages(exclude=['tests']),
package_data={'spec2scl': ['templates/*.spec']},
setup_requires=['flexmock >= 0.9.3'] + install_requires,
install_requires=install_requires,
entry_points={'console_scripts': ['spec2scl = spec2scl.bin:main']},
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
]
)