Skip to content

Commit

Permalink
RELEASE: 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arose committed Nov 20, 2015
1 parent 4c84ce7 commit 0697b4d
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include nglview/html/static/*
include LICENSE
include setup.py
global-exclude *.pyc
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ Table of contents
Installation
============

python setup.py install
From PyPI:

pip install nglview


Usage
Expand Down Expand Up @@ -159,8 +161,8 @@ class MyStructureTrajectory(nglview.Structure, nglview.Trajectory):
Changelog
=========

Version 0.2dev
--------------
Version 0.2
-----------

* MIGRATION: changed `get_string` to `get_structure_string`
* MIGRATION: changed `get_coordinates` to `get_coordinates_list`
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
25 changes: 24 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,35 @@

from setuptools import setup


VERSION = "0.2"
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: C",
"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 = "An IPython widget to interactively view molecular structures and trajectories.",
version = "0.2dev",
version = VERSION,
classifiers = CLASSIFIERS,
license = "MIT",
url = "https://github.com/arose/ngl-widget",
zip_safe = False,
Expand Down

0 comments on commit 0697b4d

Please sign in to comment.