-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (38 loc) · 903 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
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
build_exe_options = {
"includes": [
"sys",
"os"
],
"excludes": [
],
}
setup(
name="DECL-Gen",
version="v1.0-beta",
description="A tool to generate DNA encoded libraries from fragments",
url="https://github.com/Gillingham-Lab/DECL-Gen",
author="Basilius Sauter",
author_email="basilius.sauter@unibas.ch",
python_requires='>3.6.0',
packages=find_packages(),
install_requires=[
"argh",
"colorama",
"numpy",
"scipy",
"pandas",
"seaborn",
"BioPython",
"pillow",
"statsmodels",
],
entry_points={
"console_scripts": [
'declGen=DECLGen.cli.generate:main',
'declEval=DECLGen.cli.evaluate:main',
'declTools=DECLGen.cli.tools:main',
]
}
)