setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 24
dl 0
loc 28
rs 10
c 0
b 0
f 0
1
import os
2
import setuptools
3
4
SETUPDIR = os.path.dirname(__file__)
5
PKGDIR = os.path.join(SETUPDIR, 'src')
6
7
with open(os.path.join(SETUPDIR, 'README.md'), 'r') as f:
8
    long_description = f.read()
9
10
11
setuptools.setup(
12
    name='nextcloud',
13
    version='0.0.1',
14
    author='EnterpriseyIntranet',
15
    description="Python wrapper for NextCloud api",
16
    long_description=long_description,
17
    long_description_content_type="text/markdown",
18
    url="https://github.com/EnterpriseyIntranet/nextcloud-API",
19
    packages=setuptools.find_packages(PKGDIR),
20
    include_package_data=True,
21
    install_requires=['requests'],
22
    package_dir={'': 'src'},
23
    classifiers=[
24
        'Programming Language :: Python :: 3.6',
25
        'Programming Language :: Python :: 3.7',
26
        'License :: OSI Approved :: GNU General Public License (GPL)',
27
        "Operating System :: OS Independent",
28
    ],
29
)
30