setup.py (999B)
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="Mozilla Release Engineering", 12 name="mozversioncontrol", 13 description="Mozilla version control functionality", 14 license="MPL 2.0", 15 packages=find_packages(), 16 version=VERSION, 17 classifiers=[ 18 "Development Status :: 3 - Alpha", 19 "Topic :: Software Development :: Build Tools", 20 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", 21 "Programming Language :: Python :: 2", 22 "Programming Language :: Python :: 2.7", 23 "Programming Language :: Python :: 3", 24 "Programming Language :: Python :: 3.5", 25 "Programming Language :: Python :: Implementation :: CPython", 26 ], 27 keywords="mozilla", 28 )