-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.34 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.34 KB
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
45
#!/usr/bin/env python
from setuptools import setup
import setuptools
#
# with open('README.md') as file:
# long_description = file.read()
setup(
name='file_cache',
version='0.2.6',
description='Cache dataframe with local hd5 file, and reduce the memory by convert type for number',
long_description='File_cache can help you cache the pandas result with hd5 file, You can get demo from: https://github.com/Flyfoxs/file_cache/blob/master/demo.ipynb',
url='https://github.com/Flyfoxs/file_cache',
author='Felix Li',
author_email='lilao@163.com',
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
# "termcolor>=1.1",
# "Pillow==6.2.2", # torchvision currently does not work with Pillow 7
# "yacs>=0.1.6",
# "tabulate",
"easydict",
# "nibabel",
# "pydicom",
# "cloudpickle",
"matplotlib",
"tqdm>4.29.0",
# "tensorboard",
# "fvcore",
# "future", # used by caffe2
# "pydot", # used to save caffe2 SVGs
# "SimpleITK",
# "plotly",
"monthdelta",
],
keywords='pandas file cache python file_cache',
packages=setuptools.find_packages(),
)