Passed
Push — master ( bf136d...018bdb )
by Jeffrey
01:40
created

setup.get_long_description()   A

Complexity

Conditions 2

Size

Total Lines 5
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 2
nop 0
1
import os
2
import pip
3
from setuptools import setup
4
5
__author__ = 'Jeffrey Phillips Freeman'
6
__email__ = '[email protected]'
7
__license__ = 'Apache License, Version 2.0'
8
__copyright__ = 'Copyright 2017, CleverThis, Inc. and contributors'
9
__credits__ = ['David M. Brown - Project founder']
10
11
with open("README.md", "r") as fh:
12
    long_description = fh.read()
13
14
setup(
15
    name='aiogremlin',
16
    version='3.3.3',
17
    license=__license__,
18
    author=__author__,
19
    author_email=__email__,
20
    description='An asynchronous DSL for the Gremlin-Python driver',
21
    long_description_content_type="text/markdown",
22
    long_description=long_description,
23
    url='http://goblin-ogm.com',
24
    download_url='https://github.com/goblin-ogm/aiogremlin/archive/v3.3.3.tar.gz',
25
    include_package_data=True,
26
    keywords=['Tinkerpop', 'Tinkerpop3', 'gremlin', 'gremlin-python', 'asyncio', 'graphdb'],
27
    packages=['aiogremlin',
28
              'aiogremlin.driver',
29
              'aiogremlin.driver.aiohttp',
30
              'aiogremlin.process',
31
              'aiogremlin.structure',
32
              'aiogremlin.remote'],
33
    python_requires='>=3.5',
34
    install_requires=[
35
        'gremlinpython<=3.4.3',
36
        'aenum>=1.4.5',  # required gremlinpython dep
37
        'aiohttp>=2.2.5',
38
        'PyYAML>=3.12',
39
        'six>=1.10.0'  # required gremlinpython dep
40
    ],
41
    test_suite='tests',
42
    setup_requires=['pytest-runner'],
43
    tests_require=['pytest-asyncio',
44
                   'pytest-timeout',
45
                   'pytest',
46
                   'mock'],
47
    classifiers=[
48
        'Development Status :: 5 - Production/Stable',
49
        'Intended Audience :: Developers',
50
        'License :: OSI Approved :: Apache Software License',
51
        'Operating System :: OS Independent',
52
        'Programming Language :: Python',
53
        'Programming Language :: Python :: 3',
54
        'Programming Language :: Python :: 3.5',
55
        'Programming Language :: Python :: 3.6',
56
        'Programming Language :: Python :: 3.7',
57
        'Programming Language :: Python :: 3.8',
58
        # uncomment if you test on these interpreters:
59
        # 'Programming Language :: Python :: Implementation :: IronPython',
60
        # 'Programming Language :: Python :: Implementation :: Jython',
61
        # 'Programming Language :: Python :: Implementation :: Stackless',
62
        'Programming Language :: Python :: Implementation :: PyPy'
63
    ]
64
)
65