forked from myint/cppclean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (32 loc) · 1.16 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
#!/usr/bin/env python
"""Setup for cppclean."""
from __future__ import absolute_import
import ast
from distutils import core
import os
def version(filename):
"""Return version string."""
with open(filename) as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
with open('README.rst') as readme:
core.setup(
name='cppclean',
version=version(os.path.join('cpp', '__init__.py')),
description='Find problems in C++ source that slow development '
'of large code bases.',
long_description=readme.read(),
license='Apache license',
url='https://github.com/myint/cppclean',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Quality Assurance',
],
packages=['cpp'],
scripts=['cppclean'])