Skip to content

Commit a481bd5

Browse files
committed
Fix CI
1 parent 2c0689a commit a481bd5

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed
File renamed without changes.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Run CI compatibility check
3232
run: |
33-
python ci_check.py
33+
python .github/scripts/ci_check.py
3434
3535
package-test:
3636
runs-on: ubuntu-latest

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ include CONTRIBUTING.md
44
include MANIFEST.in
55
include pyproject.toml
66
include build.sh
7-
include ci_check.py
87
recursive-include emd *.py
98
recursive-include emd/cuda *.cpp *.cu *.h
109
recursive-include tests *.py

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,22 @@ dependencies = [
2626
"torch>=1.8.0",
2727
"numpy",
2828
]
29+
classifiers = [
30+
"Development Status :: 4 - Beta",
31+
"Intended Audience :: Science/Research",
32+
"License :: OSI Approved :: MIT License",
33+
"Programming Language :: Python :: 3",
34+
"Programming Language :: Python :: 3.7",
35+
"Programming Language :: Python :: 3.8",
36+
"Programming Language :: Python :: 3.9",
37+
"Programming Language :: Python :: 3.10",
38+
"Programming Language :: Python :: 3.11",
39+
"Programming Language :: C++",
40+
"Programming Language :: CUDA",
41+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
42+
"Operating System :: POSIX :: Linux",
43+
"Operating System :: Microsoft :: Windows",
44+
]
2945

3046
[project.urls]
3147
Homepage = "https://github.com/hieulhaiwork/EMD-Pytorch"

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ def get_compiler_args():
5353
'long_description': open('README.md', 'r', encoding='utf-8').read(),
5454
'long_description_content_type': 'text/markdown',
5555
'author': 'Haoqiang Fan, Kaichun Mo, Jiayuan Gu',
56+
'author_email': '',
5657
'maintainer': 'hieulhaiwork',
58+
'maintainer_email': 'hieulhaiwork@gmail.com',
5759
'url': 'https://github.com/hieulhaiwork/EMD-Pytorch',
5860
'packages': find_packages(),
5961
'install_requires': [

0 commit comments

Comments
 (0)