forked from farin/python-fakturoid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (43 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
49
import os
from setuptools import setup
# work around to prevent http://bugs.python.org/issue15881 from showing up
try:
import multiprocessing
except ImportError:
pass
# def read(fname):
# return open(os.path.join(os.path.dirname(__file__), fname)).read()
long_description = """
fakturoid.cz Python API
=======================
The Python interface to online accounting service
`Fakturoid <http://fakturoid.cz/>`_.
See documentation on https://github.com/farin/python-fakturoid
"""
setup(
name='fakturoid',
version='1.0.2',
url="https://github.com/farin/python-fakturoid",
description='Python API for fakturoid.cz',
#long_description=read('README.md'),
long_description=long_description,
author='Roman Krejcik',
author_email='[email protected]',
license='MIT',
platforms='any',
keywords=['fakturoid', 'accounting'],
packages=['fakturoid'],
install_requires=['requests', 'python-dateutil'],
tests_require=['mock'],
test_suite="tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Accounting",
],
)