Skip to content

Commit

Permalink
added deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebrilhante committed Jul 19, 2024
1 parent 93d9396 commit 9abf65d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import setuptools
from setuptools import find_packages, setup

with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setuptools.setup(
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()

setup(
name="quantnet",
version="0.1.0",
author="Alexandre Brilhante",
Expand All @@ -20,6 +23,7 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
packages=find_packages(),
install_requires=requirements,
python_requires=">=3.10",
)

0 comments on commit 9abf65d

Please sign in to comment.