24 lines
522 B
Python
24 lines
522 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='DarkChestOfWonders',
|
|
version='5',
|
|
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'},
|
|
package_data={
|
|
'dcow': [
|
|
'templates/*.j2',
|
|
],
|
|
},
|
|
install_requires=[
|
|
'Jinja2',
|
|
'Milla',
|
|
'Pillow',
|
|
],
|
|
)
|