This commit is contained in:
Bastien Abadie 2016-08-29 17:21:25 +02:00
Родитель e0624986da
Коммит 894bb7e46c
5 изменённых файлов: 45 добавлений и 1 удалений

4
.gitignore поставляемый
Просмотреть файл

@ -4,4 +4,6 @@
.coverage
htmlcov/
config.ini
.ipynb_checkpoints/
.ipynb_checkpoints/
dist
libmozdata.egg-info

6
MANIFEST.in Normal file
Просмотреть файл

@ -0,0 +1,6 @@
include VERSION
include requirements.txt
include libmozdata/*.json
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

1
VERSION Normal file
Просмотреть файл

@ -0,0 +1 @@
0.1.0

2
setup.cfg Normal file
Просмотреть файл

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

33
setup.py Normal file
Просмотреть файл

@ -0,0 +1,33 @@
# 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/.
from __future__ import absolute_import
import os
from setuptools import find_packages, setup
here = os.path.dirname(__file__)
with open(os.path.join(here, 'VERSION')) as f:
version = f.read().strip()
with open(os.path.join(here, 'requirements.txt')) as f:
install_requires = f.read().strip().split('\n')
setup(
name='libmozdata',
version=version,
description='Tool to find out some clues after crashes in using data from Socorro, Bugzilla and mercurial',
author='Mozilla Release Management',
author_email='release-mgmt@mozilla.com',
url='https://github.com/mozilla/libmozdata',
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license='MPL2',
)