forked from ijt/cmakelists_parsing
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
28 lines (27 loc) · 873 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='parse_cmake',
version='0.4.1',
author='Issac Trotts, William Woodall',
author_email='[email protected], [email protected]',
url='http://github.com/wjwwood/parse_cmake',
description='Parser for CMakeLists.txt files',
packages=find_packages(exclude=['tests']),
install_requires=['pyPEG2'],
tests_require=['nose', 'flake8'],
test_suite='nose.collector',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
license='Apache 2.0',
zip_safe=False,
include_package_data=True,
entry_points={
'console_scripts': [
'cmake_pprint = parse_cmake.cmake_pprint:main',
]
}
)