forked from by-cx/InvoiceGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 960 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 960 Bytes
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
28
29
30
#!/usr/bin/python
import os
from setuptools import setup, find_packages
import InvoiceGenerator
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "InvoiceGenerator",
version = InvoiceGenerator.__versionstr__,
author = "Adam Strauch",
author_email = "cx@initd.cz",
description = ("Library to generate PDF invoice."),
license = "BSD",
keywords = "invoice invoices generator",
url = "https://github.com/creckx/InvoiceGenerator",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
long_description="This is library to generate simple PDF invoice. It's based on ReportLab.",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
"reportlab", "PIL"
],
package_data={'InvoiceGenerator': ['locale/cs/LC_MESSAGES/*']},
)