Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

Commit

Permalink
fix: removed generate requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbraun89 authored Mar 30, 2023
1 parent 7e69799 commit 9249222
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ def fix_requirement_line(line: str) -> str:
]


with open("requirements-generate.txt", "r") as f:
REQUIREMENTS_GENERATE = [
str(requirement)
for requirement in parse_requirements(
[fix_requirement_line(line) for line in f.readlines()]
)
]


setup(
Expand All @@ -53,7 +46,6 @@ def fix_requirement_line(line: str) -> str:
),
extras_require={
"dev": REQUIREMENTS_DEV,
"generate": REQUIREMENTS_GENERATE,
},
entry_points={"console_scripts": ["minilayer=minilayer.__main__:main"]},
)

0 comments on commit 9249222

Please sign in to comment.