2014-12-25 02:37:46 +03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="mar",
|
2014-12-26 19:23:46 +03:00
|
|
|
version="1.0.1",
|
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",
|
|
|
|
long_description=open('README.txt').read(),
|
|
|
|
scripts=["mar/mar.py"],
|
|
|
|
)
|