forked from gracinet/anyblok_wms_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.87 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
# This file is a part of the AnyBlok / WMS Examples project
#
# Copyright (C) 2018 Georges Racinet <gracinet@anybox.fr>
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file,You can
# obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import setup, find_packages
import os
from anyblok_wms_examples import version
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), 'r',
encoding='utf-8') as readme_file:
README = readme_file.read()
requirements = [
'anyblok_wms_base',
]
setup(
name='anyblok_wms_examples',
version=version,
description="Warehouse Management and Logistics on Anyblok, examples",
long_description=README,
author="Georges Racinet",
author_email='gracinet@anybox.fr',
url="http://docs.anyblok-wms-base.anyblok.org/%s" % version,
packages=find_packages(),
entry_points={
'bloks': [
'wms-example-launcher=anyblok_wms_examples.launcher:Launcher',
'wms-example-basic-seller=anyblok_wms_examples.basic:Seller',
],
'anyblok.init': 'wms_examples=anyblok_wms_examples:init_config',
'test_bloks': [
],
'console_scripts': [
'wms_example=anyblok_wms_examples.launcher.main:run',
],
},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='stock logistics wms',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
tests_require=requirements + ['nose'],
)