-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.69 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
48
49
50
51
import setuptools
from setuptools import setup
import re
import os
import sys
setup(
name="perturb-tools",
version="0.3.5",
python_requires=">3.7.0",
author=[
"Michael E. Vinyard - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard",
"Jayoung K. Ryu - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard",
],
author_email="[email protected], [email protected]",
url="https://github.com/pinellolab/perturb-tools",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="perturb-tools - Analysis Framework for Pooled CRISPR Genome Editing Screens.",
packages=setuptools.find_packages(),
# packages=[
# "perturb_tools",
# "perturb_tools._arithmetic",
# "perturb_tools._experimental_design",
# "perturb_tools._external_tools",
# "perturb_tools._framework",
# "perturb_tools._framework._supporting_functions",
# "perturb_tools._normalization",
# "perturb_tools._plotting",
# "perturb_tools._readwrite",
# "perturb_tools._utilities",
# ],
install_requires=[
"matplotlib>=3.4",
"anndata>=0.7.1",
"numpy>=1.19.2",
"pandas>=1.1.2",
"biopython>=1.79",
"plotly",
"regex",
"xlsxwriter",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)