Skip to content

Commit

Permalink
fix publish version bug
Browse files Browse the repository at this point in the history
  • Loading branch information
EeroEternal committed Dec 1, 2022
1 parent 5e41eb1 commit aaf2819
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pyproject.toml

# [build-system]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 65", "wheel"]

Expand All @@ -10,13 +10,12 @@ authors = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
description = 'python tool package'
name = 'magicbag'
version = '0.0.1'
readme = "README.md"

[project.urls]
"Bug Tracker" = "https://github.com/lipicoder/magicbag/issues"
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,20 @@
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup

LONG_DESC = """magicbag is a python tool library."""
LONG_DESC = "magicbag is a python tool library."

requires = []

setup(
name="magicbag",
version="0.0.1",
url="https://github.com/lipicoder/magicbag",
license="MIT License",
author="lipi",
author_email="[email protected]",
description="tools library",
description="python tools library",
long_description=LONG_DESC,
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
Expand Down

0 comments on commit aaf2819

Please sign in to comment.