We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5419b4b commit d74546eCopy full SHA for d74546e
2 files changed
requirements.txt
@@ -0,0 +1 @@
1
+ply
setup.py
@@ -8,6 +8,9 @@
8
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
9
long_description = f.read()
10
11
+with open('requirements.txt') as f:
12
+ requirements = f.read().splitlines()
13
+
14
setup(
15
name="sifter",
16
version="0.2.0",
@@ -22,9 +25,7 @@
22
25
'Tracker': 'https://github.com/garyp/sifter/issues',
23
26
},
24
27
python_requires='>= 3.6',
- install_requires=[
- "ply",
- ],
28
+ install_requires=requirements,
29
classifiers=[
30
"Programming Language :: Python",
31
"Programming Language :: Python :: 3",
0 commit comments