summaryrefslogtreecommitdiff
path: root/setup.py
blob: c436dbfcd9760d7b44ff3b65b6ad4d522d927a9c (plain)
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
#!/usr/bin/env python

import os
import shutil

from distutils.core import setup

if not os.path.exists("README.txt"):
    shutil.copy("README.md", "README.txt")

setup(name='gnucashxml',
      version='1.0',
      description="Parse GNU Cash XML files",
      long_description=open("README.md").read(),
      author="Jorgen Schaefer",
      author_email="forcer@forcix.cx",
      url="https://github.com/jorgenschaefer/gnucashxml",
      py_modules=['gnucashxml'],
      classifiers=[
          "Development Status :: 5 - Production/Stable",
          "Intended Audience :: Developers",
          ("License :: OSI Approved :: "
           "GNU General Public License v3 or later (GPLv3+)"),
          "Topic :: Office/Business :: Financial :: Accounting",
          ],
      license="GPL",
      )