forked from VerenigingCampusKabel/python-sepa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 834 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
readme = f.read()
with open('LICENSE.md', 'r') as f:
license = f.read()
setup(
name='sepa',
version='0.5.1',
description='Python library for parsing and building SEPA Direct Debit and SEPA eMandate schemas.',
#long_description=readme,
#long_description_content_type='text/markdown',
license=license,
author='Vereniging Campus Kabel',
author_email='[email protected]',
url='https://github.com/VerenigingCampusKabel/python-sepa',
packages=find_packages(exclude=('tests')),
# install_requires=['lxml >= 3.5.0, < 4', 'signxml'],
install_requires=['lxml'],
test_suite='nose.collector',
tests_require=['deep', 'xmltodict', 'nose'],
package_data={
'sepa': ['schemas/*.xsd']
}
)