Skip to content

Commit d74546e

Browse files
added requirements.txt file
1 parent 5419b4b commit d74546e

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ply

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
99
long_description = f.read()
1010

11+
with open('requirements.txt') as f:
12+
requirements = f.read().splitlines()
13+
1114
setup(
1215
name="sifter",
1316
version="0.2.0",
@@ -22,9 +25,7 @@
2225
'Tracker': 'https://github.com/garyp/sifter/issues',
2326
},
2427
python_requires='>= 3.6',
25-
install_requires=[
26-
"ply",
27-
],
28+
install_requires=requirements,
2829
classifiers=[
2930
"Programming Language :: Python",
3031
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)