setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 29
dl 0
loc 34
rs 10
c 0
b 0
f 0
wmc 0
1
from setuptools import setup
2
3
4
with open('README.md', 'r') as fh:
5
    long_description = fh.read()
6
7
8
setup(
9
    name='jacked',
10
    version='1.0.0a3',
11
    author='Ramon Hagenaars',
12
    author_email='[email protected]',
13
    description='Dependency injection for Python',
14
    long_description=long_description,
15
    long_description_content_type='text/markdown',
16
    url='https://github.com/ramonhagenaars/jacked',
17
    packages=[
18
        'jacked',
19
        'jacked.matchers'
20
    ],
21
    test_suite='tests',
22
    zip_safe=False,
23
    classifiers=[
24
        'Intended Audience :: Developers',
25
        'License :: OSI Approved :: MIT License',
26
        'Operating System :: OS Independent',
27
        'Natural Language :: English',
28
        'Programming Language :: Python',
29
        'Programming Language :: Python :: 3',
30
        'Programming Language :: Python :: 3.5',
31
        'Programming Language :: Python :: 3.6',
32
        'Programming Language :: Python :: 3.7',
33
        'Programming Language :: Python :: 3.8'
34
    ]
35
)
36