Skip to content

Commit a04778c

Browse files
committed
Update for Potery build
1 parent 95f4214 commit a04778c

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
#Python byte code
1+
# Python byte code
22
__pycache__/
33
*.py[cod]
44

55
# PyCharm
66
.idea/
77

8-
.coverage
8+
.coverage
9+
10+
# Poetry build file
11+
.dist/
12+
dist/

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
language: python
22
python:
33
- "3.6"
4-
- "3.6-dev" # 3.6 development branch
4+
- "3.6-dev"
5+
- "3.7"
6+
- "3.7-dev"
7+
- "3.8-dev"
8+
- "nightly"
59
branches:
610
only:
711
- master

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "imagefeatureextractor"
2+
name = "ife"
33
version = "0.1.0"
44
description = "You can get a nice global image feature!!"
55
authors = ["HokutoTateyama <ht235711@yahoo.co.jp>"]
@@ -8,8 +8,10 @@ license = "BSD-3-Clause"
88
readme = "README.md"
99
classifiers =[
1010
"Development Status :: 2 - Pre-Alpha",
11-
"Programming Language :: Python :: 3.5",
11+
"Programming Language :: Python :: 3 :: Only",
1212
"Programming Language :: Python :: 3.6",
13+
"Programming Language :: Python :: 3.7",
14+
"Programming Language :: Python :: 3.8",
1315
"Topic :: Scientific/Engineering"
1416
]
1517

0 commit comments

Comments
 (0)