From 622c3f9a51c2c5edffbae1c0bb2c6ded92139d7f Mon Sep 17 00:00:00 2001 From: nathaniel smith Date: Sat, 3 Oct 2015 23:28:52 -0700 Subject: [PATCH] movin stuff --- setup.py | 23 +++++++++++++++++++ {tildetown-py => tildetown}/__init__.py | 0 {tildetown-py => tildetown}/app.py | 0 {tildetown-py => tildetown}/stats.py | 0 .../templates/guestbook.html | 0 .../templates/helpdesk.html | 0 {tildetown-py => tildetown}/util.py | 0 7 files changed, 23 insertions(+) create mode 100644 setup.py rename {tildetown-py => tildetown}/__init__.py (100%) rename {tildetown-py => tildetown}/app.py (100%) rename {tildetown-py => tildetown}/stats.py (100%) rename {tildetown-py => tildetown}/templates/guestbook.html (100%) rename {tildetown-py => tildetown}/templates/helpdesk.html (100%) rename {tildetown-py => tildetown}/util.py (100%) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..de93259 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + name='tildetown', + version='0.0.1', + description='python stuf for tilde.town', + url='https://github.com/tildetown/tildetown-scripts', + author='vilmibm shaksfrpease', + author_email='nks@lambdaphil.es', + license='GPL', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Other Audience', + 'Topic :: Artistic Software', + 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', + ], + keywords='community', + packages=['tildetown'], + install_requires = ['pyhocon==0.3.10', 'sh==1.11', 'Flask==0.10.1', 'requests==2.7.0'], + include_package_data = True, +) diff --git a/tildetown-py/__init__.py b/tildetown/__init__.py similarity index 100% rename from tildetown-py/__init__.py rename to tildetown/__init__.py diff --git a/tildetown-py/app.py b/tildetown/app.py similarity index 100% rename from tildetown-py/app.py rename to tildetown/app.py diff --git a/tildetown-py/stats.py b/tildetown/stats.py similarity index 100% rename from tildetown-py/stats.py rename to tildetown/stats.py diff --git a/tildetown-py/templates/guestbook.html b/tildetown/templates/guestbook.html similarity index 100% rename from tildetown-py/templates/guestbook.html rename to tildetown/templates/guestbook.html diff --git a/tildetown-py/templates/helpdesk.html b/tildetown/templates/helpdesk.html similarity index 100% rename from tildetown-py/templates/helpdesk.html rename to tildetown/templates/helpdesk.html diff --git a/tildetown-py/util.py b/tildetown/util.py similarity index 100% rename from tildetown-py/util.py rename to tildetown/util.py