forked from acsone/pycoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.35 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
import os
import sys
from setuptools import setup, find_packages
version = '0.3dev'
if sys.version_info < (2, 6):
sys.stderr.write("This package requires Python 2.6 or newer. "
"Yours is " + sys.version + os.linesep)
sys.exit(1)
requires = []
setup(
name='pycoda',
version=version,
author='ACSONE SA/NV',
author_email='laurent.mignon__at__acsone.eu',
description="Python library for Coded statement of account (CODA) ",
long_description='\n'.join((
open('README.rst').read(),
open('CHANGES.rst').read())),
url="http://pypi.python.org/pypi/pycoda",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=requires,
setup_requires=['nose'],
tests_require=requires + ['nose', 'coverage'],
test_suite='nose.collector',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup',
'Programming Language :: Python :: 2',
],
)