-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (49 loc) · 1.9 KB
/
setup.py
File metadata and controls
51 lines (49 loc) · 1.9 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="biobb",
version="5.1.1",
author="Biobb developers",
author_email="pau.andrio@bsc.es",
description="Biobb module collection.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="Bioinformatics Workflows BioExcel Compatibility",
url="https://github.com/bioexcel/biobb",
project_urls={
"Documentation": "http://biobb.readthedocs.io/en/latest/",
"Bioexcel": "https://bioexcel.eu/"
},
packages=setuptools.find_packages(exclude=['docs', 'test']),
install_requires=['biobb_amber==5.1.0',
'biobb_analysis==5.1.1',
'biobb_chemistry==5.1.0',
'biobb_cmip==5.1.0',
'biobb_common==5.1.0',
'biobb_cp2k==5.1.0',
'biobb_dna==5.1.0',
'biobb_flexdyn==5.1.0',
'biobb_flexserv==5.1.0',
'biobb_godmd==5.1.0',
'biobb_gromacs==5.1.1',
'biobb_io==5.1.0',
# 'biobb_md==3.7.2',
# 'biobb_ml==4.1.0',
'biobb_model==5.1.0',
'biobb_pmx==5.1.0',
'biobb_structure_utils==5.1.0',
'biobb_vs==5.1.1'
],
python_requires='>=3.8',
classifiers=(
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
),
)