From 7fc713f30ff5282bbcdc02671359658b9e14be94 Mon Sep 17 00:00:00 2001 From: nathaniel smith Date: Tue, 13 Dec 2016 20:32:21 -0800 Subject: [PATCH] add setup file --- setup.py | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 28f2fd4..8d2ae67 100644 --- a/setup.py +++ b/setup.py @@ -1,2 +1,21 @@ -# TODO -pass +#!/usr/bin/env python + +from setuptools import setup + +setup( + name='tildetown-admin', + version='1.0.0', + description='administrative webapp for tilde.town', + url='https://github.com/nathanielksmith/prosaic', + author='vilmibm shaksfrpease', + author_email='vilmibm@protonmail.ch', + license='AGPL', + classifiers=[ + 'Topic :: Artistic Software', + 'License :: OSI Approved :: Affero GNU General Public License v3 (AGPLv3)', + ], + packages=['ttadmin'], + install_requires = ['Django==1.10.2', + 'sshpubkeys==2.2.0',], + include_package_data = True, +)