-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (23 loc) · 799 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (23 loc) · 799 Bytes
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",
)