-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (36 loc) · 1.04 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
from __future__ import annotations
from hilary import __version__
from setuptools import find_packages, setup
setup(
install_requires=[
"setuptools>=56,<57",
"numpy>=1.20.0,<2",
"openpyxl>=3.1,<4",
"pandas>=2.2,<3",
"scipy>=1.6,<2",
"structlog>=22.3.0,<23",
"textdistance>=4.6,<5",
"tqdm>=4.66,<5",
"typer>=0.9,<1",
"atriegc>=0.0.3,<1.0.0",
"scipy>1.11,<2",
],
name="hilary",
version="1.2.3",
url="https://github.com/statbiophys/HILARy/",
author="Gabriel Athènes,Natanael Spisak",
author_email="[email protected],[email protected]",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"infer-lineages=hilary.__main__:app",
],
},
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
)