Skip to content

Commit 9e5b4a0

Browse files
authored
Update setup.py
1 parent 6fa7b7d commit 9e5b4a0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python
22

33
from setuptools import setup, find_packages
4+
import sys
45

56
version = '0.1.0'
67

@@ -24,6 +25,10 @@
2425
license = license,
2526
scripts = ['scripts/r-lint'],
2627
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']),
2732
packages = find_packages(exclude=('docs')),
2833
include_package_data = True
29-
)
34+
)

0 commit comments

Comments
 (0)