mirror of
https://github.com/Noettore/fattureCCSR.git
synced 2025-10-14 11:16:39 +02:00
Create package
Signed-off-by: Ettore Dreucci <ettore.dreucci@gmail.com>
This commit is contained in:
0
fatture_ccsr/__init__.py
Normal file
0
fatture_ccsr/__init__.py
Normal file
6
requirements.txt
Normal file
6
requirements.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
requests_ntlm==1.1.0
|
||||
wxPython==4.0.7
|
||||
requests==2.24.0
|
||||
openpyxl==3.0.5
|
||||
Unidecode==1.1.2
|
||||
PyPDF2==1.26.0
|
32
setup.py
Normal file
32
setup.py
Normal file
@@ -0,0 +1,32 @@
|
||||
import setuptools
|
||||
|
||||
with open('README.md', 'r', encoding='utf-8') as readme:
|
||||
long_description = readme.read()
|
||||
|
||||
setuptools.setup(
|
||||
name='fatture_ccsr',
|
||||
version='0.0.1',
|
||||
author='Ettore Dreucci',
|
||||
author_email='ettore.dreucci@gmail.com',
|
||||
description='Utility to download or convert CCSR invoices to TeamSystem\'s TRAF2000 record',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
url='https://github.com/Noettore/fattureSanRossore',
|
||||
packages=setuptools.find_packages(),
|
||||
install_requires=[
|
||||
'wxPython',
|
||||
'requests',
|
||||
'Unidecode',
|
||||
'requests_ntlm',
|
||||
'openpyxl',
|
||||
'PyPDF2',
|
||||
],
|
||||
include_package_data=True,
|
||||
license='MIT',
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires='>=3.7',
|
||||
)
|
Reference in New Issue
Block a user