forked from nglviewer/nglview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (47 loc) · 1.63 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
#!/usr/bin/env python
from setuptools import setup
import versioneer
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
if __name__ == '__main__':
setup(
name="nglview",
author="Alexander S. Rose",
author_email="[email protected]",
description="IPython widget to interactively view molecular\
structures and trajectories.",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=CLASSIFIERS,
license="MIT",
url="https://github.com/arose/nglview",
zip_safe=False,
package_data={
"nglview.datafiles": ["*"],
"nglview.html": ["static/*"]
},
packages=["nglview", "nglview.datafiles", "nglview.html"],
requires=["jupyter"],
install_requires=["jupyter"],
extras_require={
"simpletraj": ["simpletraj"],
"mdtraj": ["mdtraj"],
"pytraj": ["pytraj"],
"MDAnalysis": ["MDAnalysis"]
}
)