Skip to content
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

[IMP] Library pattern and standards #23

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d36668c
Merge pull request #8 from akretion/FIX-gramatica_formatacao_texto
rvalyi Mar 17, 2018
2765a09
examplo real, importando uma nota processada
rvalyi Mar 20, 2018
8b3223a
better .gitignore for tests
rvalyi Mar 15, 2019
d305281
added basic input/output tests
rvalyi Mar 15, 2019
49c543e
.gitignore for tests
rvalyi Mar 15, 2019
bd6c689
subclass leiauteNFe for root tag and tag prefix
rvalyi Mar 15, 2019
ffba871
setup.py for Python 2.7 and 3.4+
rvalyi Mar 15, 2019
656a755
Travis CI attempt
rvalyi Mar 15, 2019
1a78fbf
Travis CI
rvalyi Mar 15, 2019
9ea47a9
attempt for README in Markdown
rvalyi Mar 15, 2019
be6612d
proper setup.py
rvalyi Mar 15, 2019
9bcd0a9
Update README.md
rvalyi Mar 15, 2019
974780c
make subclass export usable on any stream
rvalyi Mar 15, 2019
3cb4f2d
simplify in/out test
rvalyi Mar 15, 2019
dd62878
Update README.md
rvalyi Mar 15, 2019
a5fa3b2
better tests + inut
rvalyi Apr 20, 2019
e1fa2e4
travis fix
rvalyi Apr 20, 2019
9178454
documented generation light process
rvalyi Sep 29, 2020
ad2b89f
README
rvalyi Sep 29, 2020
3c2bbb1
drop EOL Python 2.7 support at neflib 0.3
rvalyi Sep 29, 2020
34c0bb9
leiauteNFe_sub fix now that retEnviNFe is used
rvalyi Sep 30, 2020
28196f5
v0.4: Pacote de Liberação Distribuição de DF-e v1.00
rvalyi Sep 30, 2020
c8f0a92
Pacote de Liberação Distribuição de DF-e v1.02
rvalyi Sep 30, 2020
1220b6e
Pacote de Liberação Evento Generico v1.01 (Atualizado em 30/05/2014)
rvalyi Oct 1, 2020
b9cf1b8
Pacote de Liberação Evento Canc v1.01 (30/05/2014)
rvalyi Oct 1, 2020
ed87ccf
IMPORTANT: geracao pacote por pacote para evitar override nos tipos b…
rvalyi Oct 1, 2020
c91413d
Pacote de Liberação Evento CCe v1.01 (30/05/2014)
rvalyi Oct 1, 2020
539ae98
Pacote de Liberação Evento Manifesta Destinatário v1.01 (30/05/2014)
rvalyi Oct 1, 2020
71ca61d
[IMP] Library pattern and standards
mileo Nov 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
setup.py for Python 2.7 and 3.4+
  • Loading branch information
rvalyi committed Mar 15, 2019
commit ffba871462dcf517d1f5d30202f2473abf8e33aa
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -18,14 +18,18 @@
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='e-invoice NFe ERP Odoo',
packages=find_packages(),
include_package_data=True,
install_requires={
'futures; python_version == "2.7"'
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
scripts=[],
zip_safe=False,
)