Skip to content

Commit

Permalink
Minor fixes for setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
Shooshp committed Jan 10, 2023
1 parent 5a9c3ae commit 3b73c0a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
with open('README.md', "r") as readme:
long_description = readme.read()

with open('requirements.txt') as fp:
install_requires = fp.read()

setuptools.setup(
name="ConfigORM",
Expand All @@ -15,8 +13,11 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/YADRO-KNS/ConfigORM",
install_requires=install_requires,
packages=setuptools.find_packages(),
install_requires=[
"hvac>=1.0.2"
],
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 3b73c0a

Please sign in to comment.