-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Command Line Options #35
Conversation
setup.py
Outdated
setup( | ||
name='factur-x', | ||
version=verstr, | ||
author='Alexis de Lattre', | ||
author_email='[email protected]', | ||
url='https://github.com/akretion/factur-x', | ||
description='Factur-X: electronic invoicing standard for Germany & France', | ||
long_description=open('README.md').read(), | ||
long_description=open('README.rst').read(), | ||
package_data = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please look into adding a Manifest
file. It allows to integrate subfolders more easily.
Done |
CLI code needs to be separate. Can't be with the main class/library. |
Like this or outside facturx package all together? |
Separate file in the same package. See how other projects split it up. It's not commonly thrown together with the actual library. Except for very small tasks. In |
Done. I have moved it to |
ok. |
Two options have been implemented
dump
andvalidate
Need to add one more #13
For issue #3