31 lines
678 B
Python
31 lines
678 B
Python
from setuptools import find_packages, setup
|
|
import sys
|
|
|
|
|
|
setup(
|
|
name='gallerygen',
|
|
version='1',
|
|
description='Static photo gallery website generator',
|
|
author='Dustin C. Hatch',
|
|
author_email='dustin@hatch.name',
|
|
url='http://dustin.hatch.name/projects/gallerygen',
|
|
license='GPL-3',
|
|
package_dir={'': 'src'},
|
|
packages=find_packages('src'),
|
|
package_data={
|
|
'gallerygen': [
|
|
'resources/*',
|
|
'resources/css/*',
|
|
'templates/*.j2',
|
|
],
|
|
},
|
|
install_requires=[
|
|
'Jinja2',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'gallerygen=gallerygen:main',
|
|
],
|
|
},
|
|
)
|