dcow-site/setup.py

14 lines
354 B
Python

from setuptools import find_packages, setup
setup(
name='DarkChestOfWonders',
version='1',
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'},
)