We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fa7b7d commit 9e5b4a0Copy full SHA for 9e5b4a0
1 file changed
setup.py
@@ -1,6 +1,7 @@
1
#!/usr/bin/env python
2
3
from setuptools import setup, find_packages
4
+import sys
5
6
version = '0.1.0'
7
@@ -24,6 +25,10 @@
24
25
license = license,
26
scripts = ['scripts/r-lint'],
27
install_requires = required,
28
+ setup_requires=[
29
+ 'twine>=1.11.0',
30
+ 'setuptools>=38.6.',
31
+ ] + ([] if sys.version_info.minor == 4 else ['wheel>=0.31.0']),
32
packages = find_packages(exclude=('docs')),
33
include_package_data = True
-)
34
+)
0 commit comments