File tree Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change 31
31
python -m pip install --upgrade pip
32
32
pip install build
33
33
- name : Build package
34
- run : python -m build
34
+ run : python3 setup.py sdist bdist_wheel
35
35
- name : Publish package
36
36
uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
37
37
with :
Original file line number Diff line number Diff line change 1
1
[metadata]
2
- version = attr: notion-exporter .__version__
2
+ version = attr: python_notion_exporter .__version__
3
3
license_files = LICENSE
Original file line number Diff line number Diff line change 4
4
long_description = fh .read ()
5
5
6
6
setuptools .setup (
7
- name = "python- python_notion_exporter" ,
7
+ name = "python_notion_exporter" ,
8
8
author = "Roméo Phillips" ,
9
9
author_email = "phillipsromeo@gmail.com" ,
10
10
description = "Export and download Notion pages asynchronously" ,
20
20
package_dir = {"" : "src" },
21
21
packages = setuptools .find_packages (where = "src" ),
22
22
classifiers = [
23
- # see https://pypi.org/classifiers/
24
23
"Development Status :: 5 - Production/Stable" ,
25
24
"Intended Audience :: Developers" ,
26
25
"Topic :: Software Development :: Build Tools" ,
34
33
"Operating System :: OS Independent" ,
35
34
],
36
35
python_requires = ">=3.6" ,
37
- # install_requires=['Pillow'],
38
36
extras_require = {
39
37
"dev" : ["check-manifest" ],
40
- # 'test': ['coverage'],
41
38
},
42
- # entry_points={
43
- # "console_scripts": [ # This can provide executable scripts
44
- # "run=python_notion_exporter:main",
45
- # # You can execute `run` in bash to run `main()` in src/examplepy/__init__.py
46
- # ],
47
- # },
48
39
)
You can’t perform that action at this time.
0 commit comments