Skip to content

Commit 4b06a12

Browse files
committed
Conda build and version bump
:
1 parent b899373 commit 4b06a12

4 files changed

Lines changed: 57 additions & 1 deletion

File tree

exatomic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
.. _atomic: https://en.wikipedia.org/wiki/Atomic_units
2020
"""
21-
__exatomic_version__ = (0, 2, 12)
21+
__exatomic_version__ = (0, 2, 14)
2222
__version__ = '.'.join((str(v) for v in __exatomic_version__))
2323

2424

exatomic/bld.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1

exatomic/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pip install -e $SRC_DIR
2+
$PYTHON setup.py install

exatomic/meta.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package:
2+
name: exatomic
3+
version: "0.2.14"
4+
5+
source:
6+
git_rev: v0.2.14
7+
git_url: https://github.com/exa-analytics/exatomic.git
8+
9+
build:
10+
preserve_egg_dir: True
11+
12+
requirements:
13+
build:
14+
- python >=3.4
15+
- numpy
16+
- scipy
17+
- matplotlib
18+
- sqlalchemy
19+
- pandas >=0.18.1
20+
- networkx
21+
- sympy
22+
- seaborn
23+
- jupyter
24+
- notebook ==4.1.0
25+
- ipywidgets ==4.1.1
26+
- ipyparallel
27+
- sphinx
28+
- nose
29+
- exa
30+
run:
31+
- python >=3.4
32+
- numpy
33+
- scipy
34+
- matplotlib
35+
- sqlalchemy
36+
- pandas
37+
- networkx
38+
- sympy
39+
- seaborn
40+
- jupyter
41+
- notebook ==4.1.0
42+
- ipywidgets ==4.1.1
43+
- ipyparallel
44+
- sphinx
45+
- nose
46+
- exa
47+
48+
49+
about:
50+
home: https://github.com/exa-analytics/exatomic
51+
license: Apache 2.0
52+
license_file: LICENSE

0 commit comments

Comments
 (0)