Skip to content

Commit

Permalink
refactor the requirements in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-ch committed Jan 18, 2024
1 parent 1b902ab commit c70045e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ dist/
notebooks/*
mlruns/*
docs/*
.devcontainer/*
.devcontainer/*
.idea
.idea/*
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open('environments/requirements.txt') as f:
requirements = f.read().splitlines()

setuptools.setup(
name="pybalance",
version=__version__,
author="IEG Data Science",
author_email="author@example.com",
description="Population Matching",
long_description=long_description,
install_requires=requirements,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
Expand Down

0 comments on commit c70045e

Please sign in to comment.