Skip to content

Commit 6f7df3b

Browse files
committed
ADMIN: add git ignore/attributes; put package version in __init__
1 parent 22ac4a2 commit 6f7df3b

File tree

3 files changed

+85
-0
lines changed

3 files changed

+85
-0
lines changed

.gitattributes

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* text=auto
2+
# enforce text on certain files
3+
*.py text
4+
*.pyx text
5+
*.pyd text
6+
*.c text
7+
*.h text
8+
*.html text
9+
*.csv text
10+
*.json text
11+
*.pickle binary
12+
*.h5 binary
13+
*.dta binary
14+
*.xls binary
15+
*.xlsx binary

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#########################################
2+
# Editor temporary/working/backup files #
3+
.#*
4+
*\#*\#
5+
[#]*#
6+
*~
7+
*$
8+
*.bak
9+
*flymake*
10+
*.kdev4
11+
*.log
12+
*.swp
13+
*.pdb
14+
.project
15+
.pydevproject
16+
.settings
17+
.idea
18+
.vagrant
19+
.noseids
20+
21+
# Compiled source #
22+
###################
23+
*.a
24+
*.com
25+
*.class
26+
*.dll
27+
*.exe
28+
*.o
29+
*.py[ocd]
30+
*.so
31+
.build_cache_dir
32+
MANIFEST
33+
34+
# c-sources #
35+
#############
36+
*.c
37+
38+
# Python files #
39+
################
40+
# setup.py working directory
41+
build
42+
# sphinx build directory
43+
doc/_build
44+
# setup.py dist directory
45+
dist
46+
# Egg metadata
47+
*.egg-info
48+
# tox testing tool
49+
.tox
50+
# rope
51+
.ropeproject
52+
# wheel files
53+
*.whl
54+
**/wheelhouse/*
55+
# coverage
56+
.coverage
57+
58+
# OS generated files #
59+
######################
60+
.directory
61+
.gdb_history
62+
.DS_Store?
63+
ehthumbs.db
64+
Icon?
65+
Thumbs.db
66+
67+
# Windows specific leftover:
68+
doc/tmp.sv

qpython/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
__all__ = ['qconnection', 'qtype', 'qtemporal', 'qcollection']
1818

1919

20+
__version__ = '1.0RC1'
21+
2022
class MetaData(object):
2123
'''Utility class for enriching data structures with meta data, e.g. qtype hint.'''
2224
def __init__(self, **kw):

0 commit comments

Comments
 (0)