-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.22 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.22 KB
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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(
author="Saba Nafees",
author_email="saba.nafees314@gmail.com",
description="A PyPI package to compute multivariate tensor-based orthogonal polynomials for sequence data and map phenotypes onto sequence space.",
name="ortho_seqs",
version="1.0.1",
url="https://github.com/snafees/ortho_seqs",
packages=find_packages(),
keywords=[
"regression",
"projections",
"covariance",
"rna",
"dna",
"sequence-phenotype",
"orthogonal polynomials",
"higher order interactions",
],
py_modules=["orthogonal_polynomial"],
install_requires=[
"Click",
"numpy",
"pandas",
"seaborn",
"matplotlib",
"PyQt5",
"PyQt5-sip",
"openpyxl",
"logomaker",
],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={"console_scripts": ["ortho_seq = ortho_seq_code:cli"]},
extras_require={
"lint_code": ["flake8"],
"data_vis": ["matplotlib"],
"data_man": ["pandas"],
},
)