-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (52 loc) · 1.65 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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='pyLoopSage', # Package name
version='1.0.17', # Version of the software
description='An energy-based stochastic model of loop extrusion in chromatin.',
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/pyLoopSage', # GitHub repository URL
license='GNU General Public License v3.0',
packages=find_packages(include=['loopsage', 'loopsage.*']),
include_package_data=True,
package_data={
'loopsage': ['forcefields/*'],
},
install_requires=[ # List your package dependencies here
'numpy',
'numba',
'scipy',
'pandas',
'argparse',
'matplotlib',
'mdtraj',
'seaborn',
'scikit-learn',
'configparser',
'typing-extensions',
'tqdm',
'pyvista[all]',
'OpenMM',
'OpenMM-cuda',
'statsmodels',
'imageio',
'imageio[ffmpeg]',
'pillow',
],
entry_points={
'console_scripts': [
'loopsage=loopsage.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
)