Browse code

remove last remnants of versioneer

Joseph Weston authored on 17/08/2018 12:00:06
Showing 1 changed files
... ...
@@ -3,15 +3,3 @@ license_file = LICENSE
3 3
 
4 4
 [pep8]
5 5
 ignore=W503,E124
6
-
7
-# See the docstring in versioneer.py for instructions. Note that you must
8
-# re-run 'versioneer.py setup' after changing this section, and commit the
9
-# resulting files.
10
-[versioneer]
11
-VCS = git
12
-style = pep440
13
-versionfile_source = nord/_version.py
14
-versionfile_build = nord/_version.py
15
-tag_prefix =
16
-parentdir_prefix = nord-
17
-
Browse code

add LICENSE file to wheels

Joseph Weston authored on 17/08/2018 11:59:35
Showing 1 changed files
... ...
@@ -1,3 +1,6 @@
1
+[metadata]
2
+license_file = LICENSE
3
+
1 4
 [pep8]
2 5
 ignore=W503,E124
3 6
 
Browse code

remove superfluous information from setup.cfg

Joseph Weston authored on 11/09/2017 17:41:15
Showing 1 changed files
... ...
@@ -1,6 +1,3 @@
1
-[metadata]
2
-description-file = README.rst
3
-
4 1
 [pep8]
5 2
 ignore=W503,E124
6 3
 
Browse code

pep8ify and add pep8 to dev requirements

Joseph Weston authored on 10/09/2017 14:02:46
Showing 1 changed files
... ...
@@ -1,8 +1,9 @@
1
-
2
-
3 1
 [metadata]
4 2
 description-file = README.rst
5 3
 
4
+[pep8]
5
+ignore=W503,E124
6
+
6 7
 # See the docstring in versioneer.py for instructions. Note that you must
7 8
 # re-run 'versioneer.py setup' after changing this section, and commit the
8 9
 # resulting files.
Browse code

add final packaging information to setup files

Joseph Weston authored on 09/09/2017 19:42:34
Showing 1 changed files
... ...
@@ -1,8 +1,11 @@
1 1
 
2
+
3
+[metadata]
4
+description-file = README.rst
5
+
2 6
 # See the docstring in versioneer.py for instructions. Note that you must
3 7
 # re-run 'versioneer.py setup' after changing this section, and commit the
4 8
 # resulting files.
5
-
6 9
 [versioneer]
7 10
 VCS = git
8 11
 style = pep440
Browse code

add versioneer

Versioneer is quite big, but it is the simplest solution in terms
of installation.

Closes #10

Joseph Weston authored on 07/09/2017 13:37:54
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+
2
+# See the docstring in versioneer.py for instructions. Note that you must
3
+# re-run 'versioneer.py setup' after changing this section, and commit the
4
+# resulting files.
5
+
6
+[versioneer]
7
+VCS = git
8
+style = pep440
9
+versionfile_source = nord/_version.py
10
+versionfile_build = nord/_version.py
11
+tag_prefix =
12
+parentdir_prefix = nord-
13
+