-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
34 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='ReLERNN',
version='0.2',
requires_python="<3.11",
description='ReLERNN: Recombination Landscape Estimation using Recurrent Neural Networks',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kern-lab/ReLERNN/',
author='Jeffrey Adrion, Jared Galloway, Andrew Kern',
license='MIT',
packages=find_packages(exclude=[]),
install_requires=[
"msprime>=0.7.4",
"scikit-learn>=0.22.1",
"matplotlib>=3.1.3",
"scikit-allel>=1.2.1"],
scripts=[
"ReLERNN/ReLERNN_SIMULATE",
"ReLERNN/ReLERNN_SIMULATE_POOL",
"ReLERNN/ReLERNN_TRAIN",
"ReLERNN/ReLERNN_TRAIN_POOL",
"ReLERNN/ReLERNN_PREDICT",
"ReLERNN/ReLERNN_PREDICT_POOL",
"ReLERNN/ReLERNN_BSCORRECT"],
zip_safe=False,
setup_requires=[],
)