We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f6a95 commit 00d47f5Copy full SHA for 00d47f5
MANIFEST.in
@@ -1,2 +1,3 @@
1
recursive-exclude * __pycache__
2
recursive-exclude * *.py[co]
3
+include requirements.txt
requirements.txt
@@ -0,0 +1 @@
+defusedxml>=0.3
setup.py
@@ -14,9 +14,7 @@
14
author = 'José Padilla'
15
author_email = 'hello@jpadilla.com'
16
license = 'BSD'
17
-install_requires = [
18
- 'defusedxml>=0.3'
19
-]
+install_requires = open('requirements.txt').read().split('\n')
20
21
22
# This command has been borrowed from
0 commit comments