setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 42
dl 0
loc 51
rs 10
c 0
b 0
f 0
wmc 0
1
import os
2
3
from setuptools import setup, find_packages
4
5
here = os.path.abspath(os.path.dirname(__file__))
6
README = open(os.path.join(here, 'README.rst')).read()
7
CHANGES = open(os.path.join(here, 'HISTORY.rst')).read()
8
9
requires = [
10
    'pyramid>=2.0',
11
    'skosprovider>=1.1.0'
12
]
13
14
tests_requires = [
15
    'pytest',
16
    'pytest-cov',
17
    'webtest'
18
]
19
20
testing_extras = tests_requires + []
21
22
setup(
23
    name='pyramid_skosprovider',
24
    version='1.2.2',
25
    license='MIT',
26
    description='Integration of skosprovider in pyramid',
27
    long_description=README + '\n\n' + CHANGES,
28
    long_description_content_type='text/x-rst',
29
    classifiers=[
30
        'Intended Audience :: Developers',
31
        'Development Status :: 5 - Production/Stable',
32
        'License :: OSI Approved :: MIT License',
33
        'Programming Language :: Python',
34
        'Programming Language :: Python :: 3.8',
35
        'Programming Language :: Python :: 3.9',
36
        'Programming Language :: Python :: 3.10',
37
        'Programming Language :: Python :: 3.11',
38
        'Framework :: Pyramid',
39
    ],
40
    author='Koen Van Daele',
41
    author_email='[email protected]',
42
    url='https://github.com/OnroerendErfgoed/pyramid_skosprovider',
43
    keywords='pyramid skos skosprovider thesauri vocabularies',
44
    packages=find_packages(),
45
    include_package_data=True,
46
    zip_safe=False,
47
    install_requires=requires,
48
    tests_require=tests_requires,
49
    extras_require={
50
        'testing': testing_extras
51
    },
52
)
53