Skip to content

Commit

Permalink
Not all systems impl. PEPs for packaging/pathlib
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Jun 17, 2024
1 parent 1c7afdd commit 152d6d3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,20 @@
from setuptools import setup


requirements = []

VERSION = "1.29.0"

# Read long description from README.
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
with open(README_PATH) as readme_file:
README = readme_file.read()

# These are technically modules included in the language standard by PEP,
# but some systems opt not to implement those PEPs.
requirements = [
"packaging",
"pathlib"
]

setup(
name='pyqrack',
version=VERSION,
Expand Down

0 comments on commit 152d6d3

Please sign in to comment.