-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
"""
python3 setup.py sdist bdist_wheel;
python3 setup.py sdist bdist_wheel; sudo pip install dist/$(python3 install.py);
python3 setup.py sdist bdist_wheel; pip install dist/$(python3 install.py) --user
python3 setup.py sdist bdist_wheel; pip install dist/$(python3 install.py)
python3 setup.py sdist bdist_wheel; pip3 install dist/$(python3 install.py)
sudo pip install dist/$(python3 install.py);
pip install dist/$(python3 install.py) --user
"""
setup(
name='dbrecord',
version='1.1.5',
description='sqlite based kv database using for big data IO.',
url='https://github.com/pytorch-lumo/dbrecord',
author='sailist',
author_email='[email protected]',
license='Apache License 2.0',
include_package_data=True,
install_requires=[
'joblib'
],
classifiers=[
],
keywords='dbrecord dataset pytorch',
packages=find_packages('.', exclude=('tests', 'example')),
entry_points={
},
)