-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (39 loc) · 1.61 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from distutils.command.install import install as _install
from distutils.core import setup
import gcinvoice
class install(_install):
"""Specialized Python installer.
This installer does not run install_scripts.
"""
sub_commands = [(x, y) for (x, y) in _install.sub_commands
if x != 'install_scripts']
setup(cmdclass={'install': install},
name='gcinvoice',
version=gcinvoice.__version__,
author='Roman Bertle',
author_email='[email protected]',
url='http://www.smoerz.org/gcinvoice',
description='Parse Gnucash data and create invoices',
long_description="""A module to parse Gnucash data and create invoices.
The module provides a class to parse Gnucash data files (only data relevant
for invoices is extracted), and to create invoices from templates. The module
can also be run as a script.
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Office/Business :: Financial :: Accounting',
],
py_modules=['gcinvoice', 'yaptu'],
scripts=['gcinvoice.py'],
)