-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (30 loc) · 982 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
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
import setuptools
from inventree_supplier_sync.version import PLUGIN_VERSION
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="inventree-supplier-sync",
version=PLUGIN_VERSION,
author="Michael Buchmann",
author_email="[email protected]",
description="Syncronize parts with Supplier SKU and price breaks",
long_description=long_description,
long_description_content_type='text/markdown',
keywords="inventree supplier price breaks inventory",
url="https://github.com/SergeoLacruz/inventree-supplier-sync",
license="MIT",
packages=setuptools.find_packages(),
install_requires=[
],
setup_requires=[
"wheel",
"twine",
],
python_requires=">=3.6",
entry_points={
"inventree_plugins": [
"SupplierSyncPlugin = inventree_supplier_sync.supplier_sync:SupplierSyncPlugin"
]
},
)