Passed
Push — master ( 715ae9...b2e443 )
by P.R.
10:52 queued 11s
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 31
dl 0
loc 51
rs 10
c 0
b 0
f 0
1
from os import path
2
3
from setuptools import setup, find_packages
4
5
here = path.abspath(path.dirname(__file__))
6
7
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
8
    long_description = f.read()
9
10
setup(
11
    name='ETLT-MySQL',
12
13
    version='0.10.0',
14
15
    description='ETLT extension for MariaDB and MySQL databases',
16
    long_description=long_description,
17
18
    url='https://github.com/PyETLT/etlt-mysql',
19
20
    author='Paul Water',
21
    author_email='[email protected]',
22
23
    license='MIT',
24
25
    classifiers=[
26
        'Development Status :: 3 - Alpha',
27
28
        'Environment :: Console',
29
30
        'Intended Audience :: Developers',
31
32
        'License :: OSI Approved :: MIT License',
33
34
        'Operating System :: OS Independent',
35
36
        'Programming Language :: Python :: 3',
37
        'Programming Language :: Python :: 3.6',
38
        'Programming Language :: Python :: 3.7',
39
        'Programming Language :: Python :: 3.8',
40
        'Programming Language :: Python :: 3.9',
41
42
        'Topic :: Database'
43
    ],
44
45
    keywords='ETLT, MySQL, MariaDB',
46
47
    packages=find_packages(exclude=['build', 'test']),
48
49
    install_requires=['ETLT>=0.9.6, <0.10',
50
                      'pytz>=2020.1']
51
)
52