tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

setup.py (867B)


      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.2"
      8 
      9 setup(
     10    author="Mozilla Foundation",
     11    author_email="Mozilla Release Engineering",
     12    name="mozrelease",
     13    description="Common functionality used by Mozilla Release Automation",
     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.7",
     22        "Programming Language :: Python :: Implementation :: CPython",
     23    ],
     24    keywords="mozilla",
     25 )