Skip to content

Commit

Permalink
Fix setup args and add Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Jan 22, 2025
1 parent 7a2e587 commit 486109d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

try:
from setuptools import setup, find_packages
from setuptools import find_packages, setup
except ImportError:
from distutils.core import setup

Expand All @@ -16,7 +16,7 @@
if on_rtd:
requirements = []

setup(
setup_args = dict(
name="",
version="0.0.1",
package_dir={"": "src"},
Expand All @@ -41,6 +41,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
Expand Down

0 comments on commit 486109d

Please sign in to comment.