-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
66 lines (59 loc) · 1.9 KB
/
pyproject.toml
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
60
61
62
63
64
65
66
[build-system]
requires = [
"setuptools",
"versioneer[toml]",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "solvation-analysis"
dynamic = ['version', 'readme']
license = {file = "LICENSE"}
description = "A toolkit to analyze solvation structure in molecular dynamics trajectories."
authors = [
{name = 'Orion Cohen', email = '[email protected]'}
]
maintainers = [
{name = 'Orion Cohen', email = '[email protected]'},
{name = 'Hugo MacDermott-Opeskin', email = '[email protected]'}
]
requires-python = ">=3.8"
keywords = [
"python", "science", "chemistry", "biophysics", "molecular-dynamics",
"computational-chemistry", "molecular-simulation", "analysis",
"trajectory-analysis", "solvation"
]
dependencies = [
'numpy>=1.20.0',
'pandas>=2.2',
'mdanalysis>=2.0.0',
'pytest',
'matplotlib',
'setuptools',
'scipy',
'statsmodels',
'plotly',
'rdkit'
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.urls]
Documentation = 'https://solvation-analysis.readthedocs.io'
"Issue Tracker" = 'https://github.com/MDAnalysis/solvation-analysis/issues'
Source = 'https://github.com/MDAnalysis/solvation-analysis'