typo
Browse files
setup.py
CHANGED
|
@@ -7,10 +7,10 @@ with open("README.md", "r") as f:
|
|
| 7 |
|
| 8 |
with open('requirements.txt', 'r', encoding='utf-16') as ff:
|
| 9 |
required = ff.read().splitlines()
|
| 10 |
-
|
| 11 |
|
| 12 |
class InstallCommand(install):
|
| 13 |
-
user_option = install.user_options
|
| 14 |
('cupy=', 'cupy', 'enable flag to install package with GPU support'),
|
| 15 |
]
|
| 16 |
|
|
|
|
| 7 |
|
| 8 |
with open('requirements.txt', 'r', encoding='utf-16') as ff:
|
| 9 |
required = ff.read().splitlines()
|
| 10 |
+
|
| 11 |
|
| 12 |
class InstallCommand(install):
|
| 13 |
+
user_option = install.user_options + [
|
| 14 |
('cupy=', 'cupy', 'enable flag to install package with GPU support'),
|
| 15 |
]
|
| 16 |
|