Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
520727afc9
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (23 sloc) 767 Bytes
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='uropa',
version='1.2.1',
description='UROPA is a command line based tool, intended for genomic region annotation',
long_description=readme(),
url='https://github.molgen.mpg.de/loosolab/UROPA',
author='Jens Preussner',
author_email='jens.preussner@mpi-bn.mpg.de',
license='MIT',
packages=['uropa'],
entry_points = {
'console_scripts': ['uropa = uropa.uropa:main']
},
scripts = ['utils/uropa_summary.R', 'utils/uropa_reformat_output.R', 'utils/uropa2gtf.R'],
install_requires=[
'numpy',
'pysam'
],
zip_safe=False,
include_package_data=True)