-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
47 lines (45 loc) · 1.36 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="locator",
version="1.2.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/kr-colab/locator",
license="NPOSL-3.0",
packages=find_packages(exclude=[]),
install_requires=[
"numpy>=1.20.0,<1.25.0",
"tensorflow>=2.10.0",
"h5py",
"scikit-allel",
"matplotlib",
"scipy",
"tqdm",
"pandas",
"zarr",
"seaborn",
],
entry_points={
"console_scripts": [
"locator=locator.locator:main",
"vcf_to_zarr=scripts.vcf_to_zarr:main",
],
},
zip_safe=False,
python_requires=">=3.8,<3.12",
setup_requires=["numpy>=1.20.0"],
author="Andrew Kern",
author_email="[email protected]",
project_urls={
"Bug Reports": "https://github.com/kr-colab/locator/issues",
"Documentation": "https://github.com/kr-colab/locator#readme",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Non-Profit Open Software License 3.0 (NPOSL-3.0)",
],
)