-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.42 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
from setuptools import setup, find_packages
if __name__ == '__main__':
setup(
name='HiCEnterprise',
version='0.1.2-2',
author='Hania Kranas',
packages=find_packages(exclude=['tests']),
include_package_data=True,
url='https://github.com/hansiu/HiCEnterprise',
license='LICENSE.txt',
description='Scripts for prediction of interaction between regions/domains based on Hi-C maps',
long_description=open('README.md').read(),
entry_points={'console_scripts': ['HiCEnterprise=HiCEnterprise.__main__:main']},
keywords=['bioinformatics', 'hi-c', 'interactions', 'regions', 'domains', 'chromatin'],
classifiers=[
'Development Status :: 2 - Pre-Alpha'
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
install_requires=[
"numpy",
"scipy",
"statsmodels",
"matplotlib"
],
setup_requires=['pytest-runner<=3.0.1'],
tests_require=['pytest'],
)