Skip to content

Commit 680805d

Browse files
committed
some updates
1 parent 275e8e3 commit 680805d

7 files changed

+143
-1
lines changed

.coveragerc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# .coveragerc
2+
[report]
3+
omit =
4+
*/__init__.py
5+
*/orl.py

.coveralls.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# 4 space indentation
12+
[*.py]
13+
indent_style = space
14+
indent_size = 4

.gitignore

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
.hypothesis/
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Django stuff:
53+
*.log
54+
local_settings.py
55+
56+
# Flask stuff:
57+
instance/
58+
.webassets-cache
59+
60+
# Scrapy stuff:
61+
.scrapy
62+
63+
# Sphinx documentation
64+
docs/_build/
65+
66+
# PyBuilder
67+
target/
68+
69+
# IPython Notebook
70+
.ipynb_checkpoints
71+
72+
# pyenv
73+
.python-version
74+
75+
# celery beat schedule file
76+
celerybeat-schedule
77+
78+
# dotenv
79+
.env
80+
81+
# virtualenv
82+
venv/
83+
ENV/
84+
85+
# Spyder project settings
86+
.spyderproject
87+
88+
# Rope project settings
89+
.ropeproject

appveyor.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
environment:
2+
matrix:
3+
- PYTHON_VERSION: 2.7
4+
MINICONDA: C:\Miniconda
5+
- PYTHON_VERSION: 3.4
6+
MINICONDA: C:\Miniconda3
7+
8+
matrix:
9+
fast_finish: true
10+
11+
init:
12+
- "ECHO %PYTHON_VERSION% %MINICONDA%"
13+
14+
platform:
15+
- x64
16+
17+
install:
18+
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
19+
- conda config --set always_yes yes --set changeps1 no
20+
- conda update -q conda
21+
- conda info -a
22+
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy nose"
23+
- activate test-environment
24+
- pip install coverage
25+
26+
build_script:
27+
- python setup.py install
28+
29+
test_script:
30+
- nosetests

setup.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[bdist_wheel]
22
universal = 1
3-

setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,21 @@
1313

1414
import pyequib
1515

16+
1617
with codecs.open('README.rst', 'r', 'utf-8') as fd:
1718
setup(name='pyequib',
1819
version=pyequib.__version__,
1920
description = 'pyEQUIB: Python package for equilibrium atomic populations and line emissivities',
2021
long_description=fd.read(),
2122
author='Ashkbiz Danehkar',
2223
author_email='[email protected]',
24+
url='http://physics.mq.edu.au/~ashkbiz/pyequib/',
25+
download_url = 'https://github.com/equib/pyEQUIB',
2326
keywords = ['pyEQUIB', 'EQUIB', 'equilibrium', 'emissivities', 'atomic', 'astronomy', 'physics', 'astrophysics'],
2427
license='http://www.gnu.org/licenses/gpl.html',
2528
platforms=['any'],
2629
packages=['pyequib'],
2730
package_data={'pyequib': ['*.txt', 'text/*.readme', 'atomic-data/*.dat']},
2831
install_requires=['numpy','scipy'],
2932
)
33+

0 commit comments

Comments
 (0)