File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,16 @@ on: [push]
44
55jobs :
66 build :
7- runs-on : ubuntu-latest
7+ runs-on : ${{ matrix.os }}
8+ strategy :
9+ matrix :
10+ os : [ubuntu-latest, macos-latest, windows-latest]
11+ python-version : [3.6, 3.7, 3.8, pypy-3.6]
12+ exclude :
13+ - os : macos-latest
14+ python-version : 3.8
15+ - os : windows-latest
16+ python-version : 3.6
817
918 steps :
1019 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 44 branches : [main]
55jobs :
66 format :
7- runs-on : ubuntu-latest
7+ runs-on : ${{ matrix.os }}
8+ strategy :
9+ matrix :
10+ os : [ubuntu-latest, macos-latest, windows-latest]
11+ python-version : [3.6, 3.7, 3.8, pypy-3.6]
12+ exclude :
13+ - os : macos-latest
14+ python-version : 3.8
15+ - os : windows-latest
16+ python-version : 3.6
817 steps :
918 - uses : actions/checkout@v2
1019 with :
Original file line number Diff line number Diff line change @@ -4,7 +4,16 @@ on: [push]
44
55jobs :
66 build :
7- runs-on : ubuntu-latest
7+ runs-on : ${{ matrix.os }}
8+ strategy :
9+ matrix :
10+ os : [ubuntu-latest, macos-latest, windows-latest]
11+ python-version : [3.6, 3.7, 3.8, pypy-3.6]
12+ exclude :
13+ - os : macos-latest
14+ python-version : 3.8
15+ - os : windows-latest
16+ python-version : 3.6
817
918 steps :
1019 - uses : actions/checkout@v2
3443 flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3544
3645 test :
37- runs-on : ubuntu-latest
46+ runs-on : ${{ matrix.os }}
47+ strategy :
48+ matrix :
49+ os : [ubuntu-latest, macos-latest, windows-latest]
50+ python-version : [3.6, 3.7, 3.8, pypy-3.6]
51+ exclude :
52+ - os : macos-latest
53+ python-version : 3.8
54+ - os : windows-latest
55+ python-version : 3.6
3856 steps :
3957 - uses : actions/checkout@v2
4058 - name : Set up Python 3.7
Original file line number Diff line number Diff line change 1+ import setuptools
2+
3+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4+ long_description = fh .read ()
5+
6+ setuptools .setup (
7+ name = "pythonpddl-guilyx" , # Replace with your own username
8+ version = "0.2.0" ,
9+ author = "Erwin Lejeune" ,
10+ author_email = "erwinlejeune.pro@gmail.com" ,
11+ description = "PythonPDDL is a PDDL planner built on top of a Julia parser" ,
12+ long_description = long_description ,
13+ long_description_content_type = "text/markdown" ,
14+ url = "https://github.com/apla-toolbox/pythonpddl" ,
15+ packages = setuptools .find_packages (),
16+ classifiers = [
17+ "Programming Language :: Python :: 3" ,
18+ "License :: OSI Approved :: Apache Software License" ,
19+ "Operating System :: OS Independent" ,
20+ ],
21+ python_requires = '>=3.6' ,
You can’t perform that action at this time.
0 commit comments