-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.34 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
from pathlib import Path
from setuptools import setup, find_packages
from ligo.environment.Constants import Constants
setup(
name="ligo",
version=Constants.VERSION,
description="LIgO is a tool for simulation of adaptive immune receptors and repertoires.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Milena Pavlovic",
author_email="[email protected]",
url="https://github.com/uio-bmi/ligo",
install_requires=["pandas", "bionumpy>=0.2.26", "olga", "pyyaml", "airr", "plotly", "pystache", "scipy", 'stitchr',
'IMGTgeneDL', 'dill', "numpy"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3"
],
python_requires='>=3.11',
packages=find_packages(exclude=["test", "test.*"]),
package_data={
'ligo': [str(Path('IO/dataset_import/conversion/*.csv')),
str(Path("presentation/html/templates/*.html")),
str(Path("presentation/html/templates/css/*.css"))] +
[str(Path("config/default_params/") / dir.name / "*.yaml") for dir in Path("ligo/config/default_params/").glob("*")],
},
entry_points={
'console_scripts': [
'ligo = ligo.app.LigoApp:main'
]
},
)