2020-06-26 15:05:17 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='photobook',
|
2020-08-06 19:02:40 +00:00
|
|
|
version='0.9',
|
2020-06-26 15:51:57 +00:00
|
|
|
description='Built photobook with python',
|
2020-06-26 15:05:17 +00:00
|
|
|
author='Benjamin Bertrand',
|
|
|
|
author_email='benjamin.bertrand@opytex.org',
|
2020-06-26 15:51:57 +00:00
|
|
|
url='https://git.opytex.org/lafrite/photobook.git',
|
2020-06-26 15:05:17 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data = True,
|
|
|
|
install_requires=[
|
2020-06-26 15:51:57 +00:00
|
|
|
"fpdf",
|
|
|
|
"Pillow",
|
2020-06-26 15:05:17 +00:00
|
|
|
],
|
|
|
|
)
|