-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 913 Bytes
/
setup.py
File metadata and controls
44 lines (39 loc) · 913 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
DOC_NAME = 'README.md'
long_description = """
"""
if os.path.isfile(DOC_NAME):
with open(DOC_NAME) as fp:
long_description = fp.read()
long_description = long_description or ''
setup(
long_description=long_description,
packages=find_packages(),
# auto generated:
name='skeleton',
version='0.1.0',
description='',
keywords=['pytorch', 'skeleton'],
author='clint',
author_email='clint.b@kakaobrain.com',
url='https://github.com/wbaek/pytorch_skeleton',
classifiers=[],
scripts=[],
entry_points={},
zip_safe=False,
include_package_data=True,
setup_requires=[],
data_files=[],
install_requires=[
'torch',
'torchvision',
'sklearn',
'tqdm',
'treelib'
],
dependency_links=[
],
tests_require=[],
)