You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
397 B
12 lines
397 B
from setuptools import setup |
|
|
|
setup(name='invoice_extractor', |
|
version='1.0', |
|
description='KPN invoice extractor', |
|
long_description=open('README.md').read() |
|
packages=['invoice_extractor'], |
|
author = 'Burathar', |
|
author_email = 'burathar@gmail.com', |
|
url='https://git.sciuro.org/burathar/invoice-extractor', |
|
licence='GPL-3.0-only' |
|
)
|
|
|