forked from inventree/inventree-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (31 loc) · 939 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.base import INVENTREE_PYTHON_VERSION
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="inventree",
version=INVENTREE_PYTHON_VERSION,
author="Oliver Walters",
author_email="[email protected]",
description="Python interface for InvenTree inventory management system",
long_description=long_description,
long_description_content_type='text/markdown',
keywords="bom, bill of materials, stock, inventory, management, barcode",
url="https://github.com/inventree/inventree-python/",
license="MIT",
packages=setuptools.find_packages(
exclude=[
'ci',
'scripts',
'test',
]
),
install_requires=[
"requests>=2.27.0"
],
setup_requires=[
"wheel",
],
python_requires=">=3.8"
)