-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
57 lines (52 loc) · 1.94 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
# Drakkar-Software OctoBot-Services
# Copyright (c) Drakkar-Software, All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3.0 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library.
# from distutils.extension import Extension
from setuptools import find_packages
from setuptools import setup
from octobot_services import PROJECT_NAME, VERSION
PACKAGES = find_packages(exclude=["tests"])
# long description from README file
with open('README.md', encoding='utf-8') as f:
DESCRIPTION = f.read()
REQUIRED = open('requirements.txt').readlines()
REQUIRES_PYTHON = '>=3.8'
setup(
name=PROJECT_NAME,
version=VERSION,
url='https://github.com/Drakkar-Software/OctoBot-Services',
license='LGPL-3.0',
author='Drakkar-Software',
author_email='[email protected]',
description='OctoBot project services package',
packages=PACKAGES,
include_package_data=True,
long_description=DESCRIPTION,
tests_require=["pytest"],
test_suite="tests",
zip_safe=False,
data_files=[],
install_requires=REQUIRED,
python_requires=REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)