-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
43 lines (41 loc) · 1.49 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
import os
from setuptools import setup, find_packages
version = '0.6'
long_description = open("README.rst").read() + "\n" + \
open("CHANGELOG.rst").read()
setup(name='qifparse',
version=version,
description="a parser for Quicken interchange format files (.qif).",
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
keywords='qif, Quicken interchange format, file format',
author='Giacomo Spettoli',
author_email='[email protected]',
url='https://github.com/giacomos/qifparse',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
test_suite='qifparse',
install_requires=[
'setuptools',
'six',
],
entry_points="""
""",
)