forked from NVlabs/dltrainers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 678 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (24 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/env python
# Copyright (c) 2017 NVIDIA CORPORATION. All rights reserved.
# See the LICENSE file for licensing terms (BSD-style).
from __future__ import print_function
import glob
import os
import os.path
import sys
import time
import traceback
import urllib
from distutils.core import setup # , Extension, Command
assert sys.version_info[0] == 2 and sys.version_info[1] >= 7,\
"requires Python version 2.7 or later, but not Python 3.x"
scripts = """
""".split()
setup(
name='dltrainers',
version='v0.0',
author="Thomas Breuel",
description="Training function and scripts for deep learning.",
packages=["dltrainers"],
scripts=scripts,
)