Skip to content

Commit 90be040

Browse files
committed
Update package building
1 parent a1c214e commit 90be040

4 files changed

Lines changed: 28 additions & 35 deletions

File tree

.travis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@ services:
44
addons:
55
postgresql: "9.2"
66
python:
7-
- "2.7"
8-
- "3.6"
7+
- "3.14"
98
install:
109
- |
11-
if [[ $TRAVIS_PYTHON_VERSION = 3.14 ]]; then
12-
pip install -r requirements/dev.txt
13-
else
14-
pip install -r requirements/dev-3.txt
15-
fi
10+
pip install -r requirements/dev-3.txt
1611
script:
1712
- if [[ $TRAVIS_PYTHON_VERSION = 3.14 ]]; then flake8; fi
1813
- if [[ $TRAVIS_PYTHON_VERSION != 3.14 ]]; then mypy flask_phpbb3; fi

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[project]
2+
name = "Flask-phpBB3"
3+
version = "0.3.0"
4+
authors = [
5+
{ name="Gregor Kališnik", email="gregor@kalisnik.si" }
6+
]
7+
description = "Connector for Flask with phpBB3 board"
8+
readme = "README.rst"
9+
requires-python = ">=3.14"
10+
classifiers = [
11+
"Environment :: Web Environment",
12+
"Intended Audience :: Developers",
13+
"Operating System :: OS Independent",
14+
"Programming Language :: Python",
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.14",
17+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
18+
"Topic :: Software Development :: Libraries :: Python Modules"
19+
]
20+
license = "BSD-3-Clause"
21+
license-files = ["LICENSE"]
22+
23+
[project.urls]
24+
Homepage = "https://github.com/MasterMind2k/flask-phpbb3"
25+
Issues = "https://github.com/Podnapisi-NET/flask-phpbb3/issues"
26+

setup.cfg

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

setup.py

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

0 commit comments

Comments
 (0)