-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
66 lines (56 loc) · 2.09 KB
/
setup.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
OMAmer - tree-driven and alignment-free protein assignment to sub-families
(C) 2024 Nikolai Romashchenko <[email protected]>
(C) 2022-2023 Alex Warwick Vesztrocy <[email protected]>
(C) 2019-2021 Victor Rossier <[email protected]> and
Alex Warwick Vesztrocy <[email protected]>
This file is part of OMAmer.
OMAmer is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OMAmer 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with OMAmer. If not, see <http://www.gnu.org/licenses/>.
"""
from setuptools import setup, find_packages
name = "omamer"
__version__ = None
with open("{:s}/__init__.py".format(name), "rt") as fp:
for line in fp:
if line.startswith("__version__"):
exec(line.rstrip())
requirements = [
"alive_progress",
"biopython",
"ete3",
"lxml",
"numba",
"numpy<2", # pytables has no numpy2 compatible version yet
"pandas>2.0.0",
"property_manager",
"Rmath4",
"scipy",
"tables",
"tqdm",
]
extra_requirements = {"build": ["pysais"]}
desc = "OMAmer - tree-driven and alignment-free protein assignment to sub-families"
setup(
name=name,
version=__version__,
author="Victor Rossier and Alex Warwick Vesztrocy",
email="[email protected]",
url="https://github.com/DessimozLab/omamer",
description=desc,
packages=find_packages(),
install_requires=requirements,
extras_require=extra_requirements,
python_requires=">=3.8",
license="LGPLv3",
#scripts=["bin/omamer"],
entry_points={'console_scripts': ['omamer = omamer.main:main']}
)