1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# Author: Quentin Marcou
#
# This source code is distributed as part of the IGoR software.
# IGoR (Inference and Generation of Repertoires) is a versatile software to
# analyze and model immune receptors generation, selection, mutation and all
# other processes.
# Copyright (C) 2017 Quentin Marcou
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from setuptools import setup
with open("LICENSE") as f:
license = f.read()
with open("requirements.txt") as f:
requirements = [line.rstrip("\n") for line in f.readlines()]
setup(name="pygor",
version="1.3.0",
description="Module for parsing IGoR output (alignments, models etc).",
url="https://github.com/qmarcou/IGoR",
author="Quentin Marcou",
author_email="quentin.marcou@lpt.ens.fr",
license=license,
packages=[
"pygor",
"pygor.aligns",
"pygor.counters",
"pygor.counters.bestscenarios",
"pygor.counters.coverage",
"pygor.models",
"pygor.utils"
],
install_requires=requirements,
zip_safe=False)
|