andreped commited on
Commit
ec89667
1 Parent(s): 50bc727

renamed CI and added classifiers to setup.py

Browse files
Files changed (2) hide show
  1. .github/workflows/build.yml +2 -2
  2. setup.py +9 -1
.github/workflows/build.yml CHANGED
@@ -1,4 +1,4 @@
1
- name: Build and upload wheels
2
 
3
  on:
4
  push:
@@ -47,7 +47,7 @@ jobs:
47
  uses: actions/setup-python@v2
48
  with:
49
  python-version: ${{ matrix.python-version }}
50
-
51
  - name: Download artifact
52
  uses: actions/download-artifact@master
53
  with:
 
1
+ name: Build
2
 
3
  on:
4
  push:
 
47
  uses: actions/setup-python@v2
48
  with:
49
  python-version: ${{ matrix.python-version }}
50
+
51
  - name: Download artifact
52
  uses: actions/download-artifact@master
53
  with:
setup.py CHANGED
@@ -18,5 +18,13 @@ setup(
18
  'console_scripts': [
19
  'lungtumormask = lungtumormask.__main__:main'
20
  ]
21
- }
 
 
 
 
 
 
 
 
22
  )
 
18
  'console_scripts': [
19
  'lungtumormask = lungtumormask.__main__:main'
20
  ]
21
+ },
22
+ classifiers=[
23
+ "Programming Language :: Python :: 3.6",
24
+ "Programming Language :: Python :: 3.7",
25
+ "Programming Language :: Python :: 3.8",
26
+ "Programming Language :: Python :: 3.9",
27
+ "License :: OSI Approved :: MIT License",
28
+ "Operating System :: OS Independent",
29
+ ],
30
  )