-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 1.29 KB
/
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
from setuptools import setup, Extension
import setuptools
import os
from setuptools.command.install import install
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
extensions = [Extension("libfwdbwdcpp",
["ChromA/util/FwdBwd.cpp"],
include_dirs=["ChromA/util/eigen"])]
setup(
name='ChromA',
version='2.1.2',
packages=setuptools.find_packages(),
# note that we need to explicitly list the .so file so it gets copied
package_data={'': ['test/*', 'data/*', 'data/promoters/*', 'data/blacklisted/*',
'util/libfwdbwdcpp.so', 'util/*.so']},
url='',
license='',
author='Mariano Gabitto',
author_email='[email protected]',
description='Chromatin Annotation Tool',
scripts=['bin/ChromA'],
install_requires=[
'matplotlib',
'seaborn',
'numpy>=1.16.2',
'pysam',
'ray',
'scipy',
'setproctitle',
'psutil',
'nose'
],
ext_modules=extensions,
test_suite='nose.collector',
)