16 строки
395 B
Python
16 строки
395 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name="mar",
|
||
|
version="1.0",
|
||
|
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"],
|
||
|
)
|