forked from ijt/cmakelists_parsing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 816 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
# Prevent "TypeError: 'NoneType' object is not callable" error
# when running python setup.py test
# (see http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
except ImportError:
pass
setup(
name='cmakelists_parsing',
version='0.3',
author='Issac Trotts',
author_email='[email protected]',
url='http://github.com/ijt/cmakelists_parsing',
description='Parser for CMakeLists.txt files',
packages=find_packages(),
zip_safe=False,
install_requires=['pyPEG2'],
tests_require=['nose'],
test_suite='nose.collector',
include_package_data=True,
entry_points = {
'console_scripts': [
'cmake_pprint = cmakelists_parsing.cmake_pprint:main',
]
})