-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.json
41 lines (41 loc) · 1.26 KB
/
setup.json
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
{
"author": "Leonid Kahle",
"author_email": "[email protected]",
"classifiers": [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "Package for Analysis and Tricks for MOlecular Simulations: a set of useful tools to analyze molecular dynamics trajectoris",
"extras_require": {
"pre-commit": [
"pre-commit",
"flake8"
],
"tests" : [
"pytest"
],
"docs": [
"Sphinx",
"docutils",
"sphinx_rtd_theme"
]
},
"install_requires": [
"numpy>=1.14.0",
"ase>=3.17.0",
"scipy>=1.0.0",
"matplotlib>=2.1.2"
],
"license": "MIT License",
"name": "samos",
"url": "https://github.com/lekah/samos",
"version": "0.7.1"
}