forked from greedo/python-xbrl-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.31 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
long_description = 'various python-xbrl middlewares for python-xbrl-based API wrappers'
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='python-xbrl-middleware',
version='0.0.2',
description='various python-xbrl middlewares',
author='Joe Cabrera',
author_email='[email protected]',
url='https://github.com/greedo/python-xbrl-middleware/',
license='Apache License',
keywords='xbrl, Financial, Accounting, file formats',
packages=['xbrl_middleware'],
install_requires=['pytest', 'pep8', 'python-xbrl',
'xlsxwriter'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial',
],
long_description=long_description
)