Skip to content

Commit

Permalink
Less stringent dependencies, support only python>3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcoman committed Jan 8, 2025
1 parent 54d657c commit 562e653
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import os
import sys

try:
from setuptools import setup
except ImportError:
Expand All @@ -13,10 +10,9 @@
'deepmerge==1.1.1',
'lru_cache==0.2.3',
'backports.functools_lru_cache==1.6.6',
'pathlib2==2.3.7.post1',
'pyyaml==6.0.2',
'boto3==1.35.94',
'hvac==2.3.0'
'pyyaml~=6.0.2',
'boto3~=1.35.94',
'hvac~=2.3.0'
]

setup(
Expand All @@ -37,14 +33,13 @@
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
Expand Down

0 comments on commit 562e653

Please sign in to comment.