Skip to content

Commit 7340565

Browse files
committed
Update build script for skpkg standard
Migrate deprecated calls on matplotlib, pkg_resources, pyobjcryst, distutils
1 parent 51c079b commit 7340565

23 files changed

Lines changed: 455 additions & 805 deletions

.coveragerc

Lines changed: 0 additions & 22 deletions
This file was deleted.

.gitarchive.cfg

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 7 deletions
This file was deleted.

.gitignore

Lines changed: 103 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,129 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
13
*.py[cod]
4+
*$py.class
5+
.exp
6+
.lib
7+
.dll
28

3-
# C extensions
9+
# Compiled Dynamic libraries
410
*.so
11+
*.dylib
512

6-
# Packages
7-
*.egg
8-
*.egg-info
9-
dist
13+
# Compiled Object files
14+
*.slo
15+
*.lo
16+
*.o
17+
18+
# Compiled Static libraries
19+
*.lai
20+
*.la
21+
*.a.sconf_temp
22+
23+
# SCons build files
24+
.gdb_history
25+
.sconf_temp/
26+
.sconsign.dblite
1027
build
11-
eggs
12-
parts
13-
bin
14-
var
15-
sdist
16-
temp
17-
develop-eggs
18-
.installed.cfg
19-
lib
20-
lib64
28+
config.log
29+
errors.err
30+
/sconscript.local
31+
/sconsvars.py
2132
tags
33+
34+
# Distribution / packaging
35+
.Python
36+
env/
37+
build/
38+
_build/
39+
develop-eggs/
40+
dist/
41+
downloads/
42+
eggs/
43+
.eggs/
44+
lib/
45+
lib64/
46+
parts/
47+
sdist/
48+
var/
49+
venv/
50+
*.egg-info/
51+
.installed.cfg
52+
*.egg
53+
bin/
54+
temp/
55+
tags/
2256
errors.err
2357

58+
# PyInstaller
59+
# Usually these files are written by a python script from a template
60+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
61+
*.manifest
62+
*.spec
63+
2464
# Installer logs
2565
pip-log.txt
66+
pip-delete-this-directory.txt
2667
MANIFEST
2768

2869
# Unit test / coverage reports
70+
htmlcov/
71+
.tox/
2972
.coverage
30-
.tox
73+
.coverage.*
74+
.cache
3175
nosetests.xml
76+
coverage.xml
77+
*,cover
78+
.hypothesis/
3279

3380
# Translations
3481
*.mo
82+
*.pot
3583

3684
# Mr Developer
3785
.mr.developer.cfg
3886
.project
3987
.pydevproject
4088
.settings
4189

42-
# SCons build files
43-
.gdb_history
44-
.sconf_temp/
45-
.sconsign.dblite
46-
config.log
47-
/sconscript.local
48-
/sconsvars.py
90+
# Django stuff:
91+
*.log
92+
93+
# Sphinx documentation
94+
docs/build/
95+
docs/source/generated/
96+
97+
# pytest
98+
.pytest_cache/
99+
100+
# PyBuilder
101+
target/
102+
103+
# Editor files
104+
# mac
105+
.DS_Store
106+
*~
107+
108+
# vim
109+
*.swp
110+
*.swo
111+
112+
# pycharm
113+
.idea/
114+
115+
# VSCode
116+
.vscode/
117+
118+
# Visual Studio
119+
.vs/*
120+
121+
# eclipse
122+
.project
123+
.pydevproject
124+
125+
# Ipython Notebook
126+
.ipynb_checkpoints
49127

50-
# version information
51-
setup.cfg
52-
/src/pyobjcryst/version.cfg
128+
# source distribution tarball
129+
libdiffpy-*.tar.gz

.readthedocs.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 124 deletions
This file was deleted.

0 commit comments

Comments
 (0)