-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 966 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 966 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='locator',
version='1.1',
description='supervised machine learning of geographic location from genetic variation',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kern-lab/locator',
license='NPOSL-3.0',
packages=find_packages(exclude=[]),
install_requires=["numpy<1.19.0",
"tensorflow",
"h5py==2.10.0",
"scikit-allel",
"matplotlib",
"scipy==1.10.0",
"tqdm",
"pandas",
"zarr",
"seaborn",
"gnuplotlib"],
scripts=["scripts/locator.py"],
zip_safe=False,
setup_requires=["numpy"]
)