-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
68 lines (60 loc) · 2.21 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
# Copyright 2018 Michel Bouard <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from setuptools import setup
import os
import re
DIR_OF_THIS_SCRIPT = os.path.abspath( os.path.dirname( __file__ ) )
VERSION_REGEX = re.compile( r'__version__ = \'(?P<version>.*)\'' )
def ReadFile( *args ):
with open( os.path.join( DIR_OF_THIS_SCRIPT, *args ), 'r' ) as f:
return f.read()
version = VERSION_REGEX.search( ReadFile( 'flake8_ycm.py' ) ).group( 'version' )
long_description = ReadFile( 'README.rst' ) + '\n\n' + ReadFile( 'HISTORY.rst' )
setup(
name = 'flake8-ycm',
version = version,
description = 'A Flake8 plugin that enforces YouCompleteMe '
'and ycmd coding style',
long_description = long_description,
license = 'Apache License 2.0',
author = 'Michel Bouard',
author_email = '[email protected]',
url = 'https://github.com/micbou/flake8-ycm',
py_modules = [ 'flake8_ycm' ],
entry_points = {
'flake8.extension': [
'YCM11 = flake8_ycm:Indentation',
'YCM20 = flake8_ycm:SpacesInsideBrackets',
]
},
install_requires = [
'flake8 >= 3.0.0'
],
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
zip_safe = False,
keywords = 'flake8, YouCompleteMe, ycmd, coding style',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Flake8',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)