2016-12-23 18:29:24 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-12-25 02:37:46 +03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="mar",
|
2016-12-23 18:29:24 +03:00
|
|
|
version="2.0pre",
|
2014-12-25 02:37:46 +03:00
|
|
|
author="Chris AtLee",
|
|
|
|
author_email="catlee@mozilla.com",
|
|
|
|
packages=find_packages(),
|
|
|
|
url="https://github.com/mozilla/build-mar",
|
|
|
|
license="MPL 2.0",
|
|
|
|
description="MAR (Mozilla ARchive) Python implementation",
|
2016-12-23 18:29:24 +03:00
|
|
|
install_requires=['cryptography', 'construct'],
|
2015-01-10 01:16:16 +03:00
|
|
|
long_description=open('README.md').read(),
|
2016-12-23 18:29:24 +03:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'mar = mardor.cli:main',
|
|
|
|
],
|
|
|
|
},
|
2014-12-25 02:37:46 +03:00
|
|
|
)
|