Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
806a66bc
"git@developer.sourcefind.cn:OpenDAS/torchaudio.git" did not exist on "02586da797dbfa201721d2080e2171805202f72c"
Commit
806a66bc
authored
Jan 18, 2017
by
smartkiwi
Committed by
GitHub
Jan 18, 2017
Browse files
Install package dependencies automatically
parent
ce097e1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
setup.py
setup.py
+9
-0
No files found.
setup.py
View file @
806a66bc
...
@@ -9,6 +9,14 @@ VERSION = '0.1.6'
...
@@ -9,6 +9,14 @@ VERSION = '0.1.6'
long_description
=
'''torch-vision provides DataLoaders, Pre-trained models
long_description
=
'''torch-vision provides DataLoaders, Pre-trained models
and common transforms for torch for images and videos'''
and common transforms for torch for images and videos'''
# same as ./requirements.txt
requirements
=
[
'numpy'
,
'pillow'
,
'six'
,
'torch'
,
]
setup_info
=
dict
(
setup_info
=
dict
(
# Metadata
# Metadata
name
=
'torchvision'
,
name
=
'torchvision'
,
...
@@ -24,6 +32,7 @@ setup_info = dict(
...
@@ -24,6 +32,7 @@ setup_info = dict(
packages
=
find_packages
(
exclude
=
(
'test'
,)),
packages
=
find_packages
(
exclude
=
(
'test'
,)),
zip_safe
=
True
,
zip_safe
=
True
,
install_requires
=
requirements
,
)
)
setup
(
**
setup_info
)
setup
(
**
setup_info
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment