-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 927 Bytes
/
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
from setuptools import setup
setup(
name='lswf',
version='1.0',
description='lower ssd write frequency',
author='Pythux',
# author_email='',
packages=[
'lswf',
'lswf.core',
'lswf.data_access',
'lswf.lib',
'lswf.models',
], # same as name
install_requires=[
'jsonschema',
'crud-vanilla @ git+https://github.com/Pythux/py_CRUD_vanilla.git',
'tools @ git+https://github.com/Pythux/py_tools.git',
'patcher @ git+https://github.com/Pythux/patcher.git',
], # external packages as dependencies
# scripts=[
# 'lswf/app',
# ]
entry_points={
'console_scripts': [
'lswf = lswf.__main__:main'
]
},
)
# install in dev mode (link to the current folder)
# pip install -e .
# pip uninstall will not delete scripts,
# wich will raise FileNotFound if renamed/deplaced/deleted