forked from hartwork/resolve-march-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (37 loc) · 1.47 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
#! /usr/bin/env python2
# Copyright (C) 2015 Sebastian Pipping <[email protected]>
# Licensed under GPL v2 or later
from setuptools import setup
from resolve_march_native.version import VERSION_STR
def _read(filename):
with open(filename, 'r') as f:
return f.read()
if __name__ == '__main__':
setup(
name='resolve-march-native',
description='Tool to determine what GCC flags -march=native would resolve into',
long_description=_read('README.rst'),
license='GPLv2+',
version=VERSION_STR,
author='Sebastian Pipping',
author_email='[email protected]',
url='https://github.com/hartwork/resolve-march-native',
packages=[
'resolve_march_native',
],
scripts=[
'resolve-march-native',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Compilers',
'Topic :: Utilities',
],
)