-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
107 lines (88 loc) · 3.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'guardonce',
version = '2.4.0',
description = 'Utilities for converting from C/C++ include guards to #pragma once and back again',
license = 'MIT',
url = 'https://github.com/cgmb/guardonce',
author = 'Cordell Bloor',
author_email = '[email protected]',
packages = ['guardonce'],
entry_points = {
'console_scripts': [
'checkguard = guardonce.checkguard:main',
'guard2once = guardonce.guard2once:main',
'once2guard = guardonce.once2guard:main',
]
},
extras_require = { 'test': ['nose'] },
install_requires = [
],
tests_require = ['guardonce[test]'],
test_suite = "nose.collector",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
long_description = """
Why Convert?
------------
Include guards suck. They're tiring to type and tedius to update. Worse,
the task of updating boilerplate leaves room for copy/paste errors, or
other mistakes. #pragma once is simpler and less error prone. That's why
you should convert to #pragma once.
Alas, though #pragma once is available on all the most commonly used
compilers, it's not available on *every* compiler. Perhaps one day
you'll add support for a platform with a barebones compiler with no
support for #pragma once and you'll have to convert back. That's ok.
It's easy!
What exactly is guardonce?
--------------------------
There are three main tools provided by guardonce:
1. ``checkguard`` helps find any broken include guards you may already
have in your project. These should be addressed before converting.
2. ``guard2once`` converts files with include guards into files with
#pragma once directives. This ensures your entire project is
consistently using #pragma once.
3. ``once2guard`` converts files with #pragma once directives back into
files with include guards. This ensures your entire project is
consistently using include guards.
How to use:
-----------
First, check your project for broken headers. To recursively search your
project directories for the names of all files that lack proper include
guards, use the following command, substituting your project's directory
for the quoted string:
``checkguard -r "source_directory"``
By default, checkguard is very forgiving. It accepts either #pragma once
or anything that looks like an include guard. If you know that all your
guards should match some format, you can be more strict by using ``-p``
to specify a pattern to check against.
If certain files are not supposed to have include guards, feel free to
leave them be. Files without include guards are ignored by this next
step.
Now, all that remains is converting the headers to use #pragma once:
``guard2once -r "source_directory"``
You're done! Double check that the result matches your expectations and
start using #pragma once in your new code. Know that if you ever need to
switch back, it's as simple as:
``once2guard -r "source_directory"``
If the default guard style doesn't appeal to you, there are a few
options to customize it. Maybe take a look through ``once2guard --help``
or check out a walkthrough for some examples.
"""
)