Skip to content

Commit

Permalink
build stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud committed Oct 4, 2023
1 parent 6ddf81a commit eb5316b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[wheel]
universal = 1

[metadata]
description-file = README.md

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from setuptools import find_packages, setup

with open('requirements.txt') as f:
requires = f.read().splitlines()
if os.path.exists("requirements.txt"):
with open('requirements.txt') as f:
requires = f.read().splitlines()
else:
requires= []

setup(
name="gogstools",
Expand Down

0 comments on commit eb5316b

Please sign in to comment.