setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 25
dl 0
loc 32
rs 10
c 0
b 0
f 0
1
from setuptools import setup, find_packages
2
3
with open('README.md') as readme_file:
4
    README = readme_file.read()
5
6
with open('HISTORY.md') as history_file:
7
    HISTORY = history_file.read()
8
9
setup_args = dict(
10
    name='luckywood',
11
    version='0.5.3',
12
    description='Package of helper classes.',
13
    long_description_content_type="text/markdown",
14
    long_description=README + '\n\n' + HISTORY,
15
    license='LGPL-3.0',
16
    packages=find_packages(),
17
    author='Frederik Glücks, Christian Wald-von der Lahr',
18
    author_email='[email protected], [email protected]',
19
    keywords=[],
20
    url='https://github.com/gluecks-gmbh/luckywood',
21
    download_url='https://pypi.org/project/luckywood/',
22
    python_requires='>=3.7'
23
)
24
25
install_requires = [
26
    "mysql-connector-python~=8.0.29",
27
    "requests~=2.28.0"
28
]
29
30
if __name__ == '__main__':
31
    setup(**setup_args, install_requires=install_requires)
32