Skip to content

Commit 03723dd

Browse files
committed
feat: package
1 parent d02a054 commit 03723dd

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install build
3333
- name: Build package
34-
run: python -m build
34+
run: python3 setup.py sdist bdist_wheel
3535
- name: Publish package
3636
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3737
with:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[metadata]
2-
version = attr: notion-exporter.__version__
2+
version = attr: python_notion_exporter.__version__
33
license_files = LICENSE

setup.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="python-python_notion_exporter",
7+
name="python_notion_exporter",
88
author="Roméo Phillips",
99
author_email="phillipsromeo@gmail.com",
1010
description="Export and download Notion pages asynchronously",
@@ -20,7 +20,6 @@
2020
package_dir={"": "src"},
2121
packages=setuptools.find_packages(where="src"),
2222
classifiers=[
23-
# see https://pypi.org/classifiers/
2423
"Development Status :: 5 - Production/Stable",
2524
"Intended Audience :: Developers",
2625
"Topic :: Software Development :: Build Tools",
@@ -34,15 +33,7 @@
3433
"Operating System :: OS Independent",
3534
],
3635
python_requires=">=3.6",
37-
# install_requires=['Pillow'],
3836
extras_require={
3937
"dev": ["check-manifest"],
40-
# 'test': ['coverage'],
4138
},
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-
# },
4839
)

0 commit comments

Comments
 (0)