setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 60
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 39
dl 0
loc 60
rs 10
c 0
b 0
f 0
1
from codecs import open
2
from os import path
3
4
from setuptools import setup, find_packages
5
6
here = path.abspath(path.dirname(__file__))
7
8
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
9
    long_description = f.read()
10
11
setup(
12
    name='SDoc',
13
14
    version='1.0.0',
15
16
    description='A super format documentation document preparation system for SAAS and multi tenant applications',
17
    long_description=long_description,
18
19
    url='https://github.com/SDoc/py-sdoc',
20
21
    author='Set Based IT Consultancy',
22
    author_email='[email protected]',
23
24
    license='MIT',
25
26
    classifiers=[
27
        'Development Status :: 4 - Beta',
28
29
        'Environment :: Console',
30
31
        'Intended Audience :: Developers',
32
        'Intended Audience :: End Users/Desktop',
33
34
        'License :: OSI Approved :: MIT License',
35
36
        'Operating System :: OS Independent',
37
38
        'Programming Language :: Python :: 3',
39
        'Programming Language :: Python :: 3.7',
40
        'Programming Language :: Python :: 3.8',
41
        'Programming Language :: Python :: 3.9',
42
        'Programming Language :: Python :: Implementation :: PyPy',
43
44
        'Topic :: Documentation',
45
        'Topic :: Software Development :: Documentation',
46
        'Topic :: Text Editors :: Documentation',
47
    ],
48
49
    keywords='Documentation, SAAS',
50
51
    packages=find_packages(exclude=['build', 'test']),
52
53
    install_requires=['antlr4-python3-runtime==4.12.*',
54
                      'cleo~=2.0.0',
55
                      'httplib2~=0.21.0'],
56
57
    entry_points={
58
        'console_scripts': [
59
            'sdoc = sdoc:main',
60
        ],
61
    }
62
)
63