Skip to content

Commit

Permalink
added extra req
Browse files Browse the repository at this point in the history
  • Loading branch information
tlatkowski committed Jul 6, 2020
1 parent 8b4567e commit 840dd36
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from setuptools import setup
from setuptools import Extension

with open('requirements/requirements.txt') as f:
requirements = f.readlines()
Expand All @@ -11,9 +10,12 @@
description='GANs2.0',
long_description=(
'Generative Adversarial Networks in TensorFlow 2.0.'
),
),
long_description_content_type='text/markdown',
install_requires=requirements,
extras_require={
'tensorflow': ['tensorflow>=2.2.0'],
},
packages=[
'gans.datasets',
'gans.layers',
Expand All @@ -22,4 +24,4 @@
],
zip_safe=True
)
'Generative Adversarial Networks in TensorFlow 2.0'
'Generative Adversarial Networks in TensorFlow 2.0'

0 comments on commit 840dd36

Please sign in to comment.