-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.12 KB
/
setup.py
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
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from __future__ import print_function
from setuptools import setup, find_packages
# from distutils.core import setup
import os
import stat
import shutil
import platform
import sys
import site
import glob
# -- file paths --
long_description="""Cache IO: A simple caching system for data related to deep learning projects"""
setup(
name='cache_io',
version='1.0.0',
description='Caching large data results',
long_description=long_description,
url='https://github.com/gauenk/cache_io',
author='Kent Gauen',
author_email='[email protected]',
license='MIT',
keywords='caching, results, big data ',
install_requires=['easydict'],
package_dir={"": "lib"},
packages=find_packages(""),
entry_points = {
'console_scripts': ['lsc=cache_io.lsc:main',
'cache_cp=cache_io.cmd_copy:main',
'sbatch_py=cache_io.slurm.cmdline:main',
'merge_cache=cache_io.slurm.merge_cache:main'
],
}
)