File tree 4 files changed +16
-49
lines changed
4 files changed +16
-49
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ __pycache__/
6
6
* .so
7
7
8
8
# Distribution / packaging
9
- .Python
10
9
env /
11
10
build /
12
11
develop-eggs /
23
22
.installed.cfg
24
23
* .egg
25
24
26
- # PyInstaller
27
- # Usually these files are written by a python script from a template
28
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
29
- * .manifest
30
- * .spec
31
-
32
- # Installer logs
33
- pip-log.txt
34
- pip-delete-this-directory.txt
35
-
36
- # Unit test / coverage reports
37
- htmlcov /
38
- .tox /
39
- .coverage
40
- .coverage. *
41
- .cache
42
- nosetests.xml
43
- coverage.xml
44
- * ,cover
45
-
46
- # Translations
47
- * .mo
48
- * .pot
49
-
50
- # Django stuff:
51
- * .log
52
-
53
25
# Sphinx documentation
54
26
docs /_build /
55
27
56
- # PyBuilder
57
- target /
28
+ # Environments
29
+ env
30
+ venv
31
+ .env
32
+ .venv
58
33
59
- # IDE
60
- .idea
34
+ # IDEs
61
35
.vscode
36
+ .idea
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 19
19
#
20
20
import os
21
21
import sys
22
+ from configparser import ConfigParser
22
23
23
- from __af_version__ import full_version
24
+
25
+ config = ConfigParser ()
26
+ config .read (os .path .abspath ("setup.cfg" ))
27
+ full_version = config .get ("metadata" , "version" )
24
28
25
29
sys .path .insert (0 , os .path .abspath ('..' ))
26
30
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = arrayfire
3
- version = 3.7.20200213
3
+ version = 3.7.20201113
4
4
description = Python bindings for ArrayFire
5
5
licence = BSD
6
6
long_description = file: README.md
9
9
url = http://arrayfire.com
10
10
classifiers =
11
11
Programming Language :: Python
12
- Programming Language :: Python :: 2.7
13
12
Programming Language :: Python :: 3
14
13
Programming Language :: Python :: 3.6
14
+ Programming Language :: Python :: 3.7
15
+ Programming Language :: Python :: 3.8
15
16
16
17
[options]
17
18
packages = find:
19
+ python_requires = >=3.6.0
18
20
19
21
[options.packages.find]
20
22
include = arrayfire
You can’t perform that action at this time.
0 commit comments