forked from iqt4/gnucashxml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 848 Bytes
/
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
#!/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="[email protected]",
url="https://github.com/jorgenschaefer/gnucashxml",
py_modules=['gnucashxml'],
install_requires=[
'python-dateutil'
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
("License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"),
"Topic :: Office/Business :: Financial :: Accounting",
],
license="GPL",
)