dcow-site/setup.py

19 lines
437 B
Python

from setuptools import find_packages, setup
setup(
name='DarkChestOfWonders',
version='4',
description='Dark Chest of Wonders Guild Site',
author='Gyrfalcon',
author_email='gyrfalcon@darkchestofwonders.us',
url='http://darkchestofwonders.us/',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'Jinja2',
'Milla',
'Pillow',
],
)