setup.py (929B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 from setuptools import find_packages, setup 6 7 VERSION = "0.1" 8 9 setup( 10 author="Mozilla Foundation", 11 author_email="dev-builds@lists.mozilla.org", 12 name="mozcmakeparser", 13 description="Mozilla Custom CMake parser.", 14 license="MPL 2.0", 15 packages=find_packages(), 16 version=VERSION, 17 install_requires=[ 18 "pyparsing==2.4.7", 19 "colorama", 20 ], 21 classifiers=[ 22 "Development Status :: 3 - Alpha", 23 "Topic :: Software Development :: Build Tools", 24 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", 25 "Programming Language :: Python :: 2.7", 26 "Programming Language :: Python :: Implementation :: CPython", 27 ], 28 keywords="mozilla build", 29 )