-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (56 loc) · 1.91 KB
/
setup.py
File metadata and controls
59 lines (56 loc) · 1.91 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
from pathlib import Path
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyRepliSage', # Package name
version='0.2.9.5', # Version of the software
description='A stochastic model for the modeling of DNA replication and cell-cycle dynamics.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Sebastian Korsak',
author_email='s.korsak@datascience.edu.pl',
url='https://github.com/SFGLab/RepliSage', # GitHub repository URL
license='GNU General Public License v3.0',
packages=find_packages(include=['RepliSage', 'RepliSage.*']),
include_package_data=True,
package_data={
'RepliSage': ['forcefields/*','data/*'],
},
install_requires=[ # List your package dependencies here
'scipy>=1.11.4',
'mdtraj>=1.9.9',
'seaborn>=0.13.0',
'statsmodels>=0.14.0',
'matplotlib>=3.8.2',
'numpy>1.2,<2.0',
'pandas>=2.1.3',
'OpenMM>=8.1.1',
'openmm-cuda>=8.1.1',
'scikit-learn>=1.5.2',
'scikit-image>=0.24.0',
'networkx>=3.4.2',
'numba>=0.60.0',
'hilbertcurve>=2.0.5',
'matplotlib-venn>=1.1.1',
'imageio>=2.36.0',
'imageio-ffmpeg>=0.5.1',
'jupyterlab>=4.2.5',
'jupyter_core>=5.7.2',
'tqdm',
'pyarrow',
'fastparquet',
'pyBigWig>=0.3.19',
],
entry_points={
'console_scripts': [
'replisage=RepliSage.run:main', # loopsage command points to run.py's main function
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux', # General OS classifier
],
python_requires='>=3.10', # Specify Python version compatibility
)