-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
69 lines (52 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""setup.py: python package setup for GuideMaker
"""
from setuptools import setup
import versioneer
requirements = [
# package requirements go here
'biopython>=1.81',
'numpy >=1.11',
'pybedtools>=0.9.1',
'nmslib>=2.1.1',
'pandas>=2.1',
'pyyaml>=6.0.1',
'regex==2020.11.13',
'altair>=5.1.1',
'jsonschema>=4.19.0',
'streamlit>=1.26.0',
'streamlit-tags>=1.2.8',
'pytest>=7.4',
'pytest-cov>=4.1',
'pdoc3>=0.10.0',
'onnxruntime>=1.15.1',
'importlib-resources>=6.0'
]
setup(
name='guidemaker',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='GuideMaker: Software to design gRNAs pools in non-model genomes and CRISPR-Cas',
license='CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
author='Adam Rivers',
author_email='[email protected]',
url='https://guidemaker.org',
long_description=open('README.md').read(),
packages=['guidemaker'],
entry_points={
'console_scripts': [
'guidemaker=guidemaker.cli:main'
]
},
install_requires=requirements,
python_requires='>=3.8',
test_suite='pytest',
tests_require=['pytest'],
keywords='CRISPR-Cas',
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Development Status :: 3 - Alpha'
]
)