-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
27 lines (24 loc) · 861 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
import os
from setuptools import setup, find_packages, Extension
ext = Extension('utils', ['umis/utils.pyx'])
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='umis',
version='1.0.9',
description='Package for estimating UMI counts in Transcript Tag Counting data.',
packages=find_packages(),
install_requires=['click', 'pysam>=0.8.3', 'pandas', 'regex', 'scipy', 'toolz'],
ext_modules=[ext],
setup_requires=['cython'],
entry_points = {
'console_scripts': ['umis=umis.umis:umis']
},
url='https://github.com/vals/umis',
author='Valentine Svensson',
author_email='[email protected]',
long_description=read('README.md'),
package_data = {
'': ['examples/*/*.json']
}
)