We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ba1c7 commit aef7d15Copy full SHA for aef7d15
MANIFEST.in
@@ -1,3 +1,4 @@
1
include README.md
2
include CHANGELOG.md
3
include LICENSE
4
+include requirements.txt
setup.py
@@ -14,6 +14,11 @@ def get_long_description():
14
return text[idx:]
15
16
17
+def get_requirements():
18
+ with open('requirements.txt') as f:
19
+ return f.read().splitlines()
20
+
21
22
setup(
23
name='fastpurge',
24
version='1.0.0',
@@ -35,11 +40,5 @@ def get_long_description():
35
40
'Programming Language :: Python :: 3',
36
41
'Topic :: Software Development :: Libraries :: Python Modules',
37
42
],
38
- install_requires=[
39
- 'requests',
- 'more-executors>=1.19.1',
- 'six',
- 'monotonic',
43
- 'edgegrid-python',
44
- ],
+ install_requires=get_requirements(),
45
)
0 commit comments