forked from de-Boer-Lab/CisRegModels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·12 lines (12 loc) · 807 Bytes
/
setup.py
File metadata and controls
executable file
·12 lines (12 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(
name='CisRegModels', # This is the name of your PyPI-package.
version='1.0', # Update the version number for new releases
description='Various scripts for processing GPRA data, as well as making models of cis-regulatory logic from GPRA data.',
packages=find_packages(),
url='https://github.com/Carldeboer/CisRegModels',
install_requires=['tensorflow','numpy','datetime'],
scripts=['collapsePromoters.py','mergeSeqsByBowtie.py','seqsToOHC.py','translateSequencesByDict.py','alignFastqsIntoSeqs.py','makeThermodynamicEnhancosomeModel.py', 'predictThermodynamicEnhancosomeModel.py'] # The name of your scipt, and also the command you'll be using for calling it
)