forked from simonluijk/django-invoice
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (31 loc) · 795 Bytes
/
setup.py
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
31
32
33
34
from setuptools import setup
import invoice
setup(
name="django-invoice2",
version=invoice.version,
description='Pluggable django invoicing app',
packages=[
'invoice',
'invoice.exports',
'invoice.migrations',
'invoice.templatetags',
],
package_data={
"invoice": [
"static/invoice/*",
"templates/admin/invoice/invoice/*.html",
"templates/invoice/*.html",
"locale/*/LC_MESSAGES/*",
]
},
include_package_data=True,
author='Tomas Peterka',
author_email='[email protected]',
license="MIT",
keywords="django invoice pdf",
url="https://github.com/katomaso/django-invoice",
install_requires=[
"django>=1.8",
"reportlab",
],
)