-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.4 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Sheriff',
version='1.0.0',
author='Brad Balderson, Michael Lorenzini, Aaron Ho',
author_email='[email protected]',
packages=find_packages(),
#license=TBD #'GPL-3.0',
long_description_content_type="text/markdown",
long_description=long_description,
scripts=['bin/sheriff'],
install_requires = ['pandas', 'gtfparse==2.5.0', 'faiss-cpu', "numpy<2"],
#install_requires = ['numpy','pandas'],
#install_requires = ['pandas', 'gtfparse==2.5.0', 'faiss-cpu', "numpy<2"],
entry_points={
'console_scripts': [
'sheriff=sheriff.__main__:main',
'Sheriff=sheriff.__main__:main'
]
},
python_requires='>=3',
description=("Sheriff calls CRISPR/cas9 edit sites, and quantifies the number of edited alleles at each site along "
"with gene expression in single cells using Superb-seq data."),
keywords=['Sheriff', 'sheriff', 'Superb-seq', 'superb-seq'],
url='https://github.com/BradBalderson/Sheriff',
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics :: CRISPR",
# license TBD "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
)