-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 952 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 952 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
29
30
31
32
33
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ldmat",
version="0.1.7",
author="Rockwell Weiner",
author_email="rockwellw@gmail.com",
description=("Efficient Storage and Querying of Linkage Disequilibrium Matrices"),
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/G2Lab/ldmat",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": "ldmat = ldmat:run_cli"},
install_requires=[
"click>=8.1.3",
"h5py>=3.7.0",
"matplotlib>=3.4.3",
"numpy>=1.21.3",
"pandas>=1.3.4",
"scipy>=1.8.1",
"seaborn>=0.11.2",
],
)