Skip to content

Commit

Permalink
Add INSTALL_REQUIRES
Browse files Browse the repository at this point in the history
  • Loading branch information
wq2012 committed Sep 25, 2024
1 parent 22db7d9 commit 9b1d5f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@

import setuptools

VERSION = '0.1.1'
VERSION = '0.1.2'

with open('README.md', 'r') as file_object:
LONG_DESCRIPTION = file_object.read()

with open("requirements.txt") as file_object:
INSTALL_REQUIRES = file_object.read().splitlines()

setuptools.setup(
name='uisrnn',
version=VERSION,
Expand All @@ -35,4 +38,5 @@
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
install_requires=INSTALL_REQUIRES,
)

0 comments on commit 9b1d5f2

Please sign in to comment.