-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 981 Bytes
/
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
from setuptools import setup, find_packages
def readfile(filename):
with open(filename, 'r+') as f:
return f.read()
setup(
name="genetargeter",
version="2020.9.21",
description="Creates constructs to gene edit P. falciparum; developed by the Niles Lab at MIT.",
long_description=readfile('README.md'),
author="Pablo Cardenas",
author_email="[email protected]",
url="genetargeter.mit.edu",
py_modules=['genetargeter','gRNAScores'],
install_requires=['joblib',
'numpy',
'scikit-learn',
'scipy',
'biopython',
'pandas',
'dill',
'hyperopt'
],
packages=find_packages(),
license=readfile('LICENSE'),
include_package_data=True,
entry_points={
'console_scripts': [
'genetargeter = genetargeter:runAll'
]
},
)