setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 28
dl 0
loc 31
rs 10
c 0
b 0
f 0
1
from setuptools import setup, find_packages
2
from codecs import open
3
from os import path
4
5
here = path.abspath(path.dirname(__file__))
6
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
7
    long_description = f.read()
8
9
setup(
10
    name='trade',
11
    version="1.1.4",
12
    description='A framework for financial applications.',
13
    long_description=long_description,
14
    url='https://github.com/rochars/trade',
15
    author="Rafael da Silva Rocha",
16
    author_email='[email protected]',
17
    license='MIT',
18
    classifiers=[
19
        'Development Status :: 5 - Production/Stable',
20
        'Intended Audience :: Developers',
21
        'Topic :: Software Development',
22
        'License :: OSI Approved :: MIT License',
23
        'Programming Language :: Python :: 2.7',
24
        'Programming Language :: Python :: 3.3',
25
        'Programming Language :: Python :: 3.4',
26
        'Programming Language :: Python :: 3.5',
27
        'Programming Language :: Python :: 3.6',
28
    ],
29
    keywords='asset stock exchange securities market finance investment money currency cost framework',
30
    packages=['trade'],
31
)
32