Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
0526c0ca
Commit
0526c0ca
authored
Feb 04, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add an initial setup.py
parent
41be1881
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
setup.cfg
setup.cfg
+16
-0
setup.py
setup.py
+18
-0
No files found.
setup.cfg
0 → 100644
View file @
0526c0ca
[metadata]
name = tensorpack
author = TensorPack contributors
author-email = ppwwyyxxc@gmail.com
summary = Neural Network Toolbox on TensorFlow
description-file = README.md
url = https://github.com/ppwwyyxx/tensorpack
license = Apache
[files]
packages =
tensorpack
[wheel]
universal = 1
setup.py
0 → 100644
View file @
0526c0ca
from
setuptools
import
setup
import
sys
req
=
[
'numpy'
,
'six'
,
'termcolor'
,
'tqdm>4.11.1'
,
'msgpack-python'
,
'msgpack-numpy'
,
'pyzmq'
]
if
sys
.
version_info
.
major
==
2
:
req
.
extend
([
'subprocess32'
,
'functools32'
])
setup
(
version
=
'0.1'
,
install_requires
=
req
,
zip_safe
=
False
# dataset and __init__ use file
)
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