aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-07-09 20:19:35 -0400
committerMike Crute <mcrute@gmail.com>2010-07-09 20:19:35 -0400
commite41afb1e9e0d26650f0ea30f3308c0bb471cc2c6 (patch)
tree4e638cf1cc07112872661af2c7a294b9d27371b9 /setup.py
parentd33473d1686a2a77bacf6eabe9275b0e5e11c83a (diff)
downloadsnakeplan-e41afb1e9e0d26650f0ea30f3308c0bb471cc2c6.tar.bz2
snakeplan-e41afb1e9e0d26650f0ea30f3308c0bb471cc2c6.tar.xz
snakeplan-e41afb1e9e0d26650f0ea30f3308c0bb471cc2c6.zip
Re-arranging some stuff and updating the boilerplate files.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..0598e9d
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,51 @@
1#!/usr/bin/env python
2# vim: set filencoding=utf8
3
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16"""
17SnakePlan Setup Script
18
19@author: Mike Crute (mcrute@gmail.com)
20@organization: SoftGroup Interactive, Inc.
21@date: July 09, 2010
22"""
23
24import snakeplan
25from setuptools import setup, find_packages
26
27
28setup(
29 name='snakeplan',
30 version=snakeplan.__version__,
31 packages=find_packages(),
32 description='Open source agile project management',
33 author='Mike Crute',
34 author_email='mcrute@gmail.com',
35 url='http://snakeplan.googlecode.com',
36 include_package_data=True,
37 install_requires=[
38 'django>=1.0',
39 ],
40 classifiers=[
41 "Development Status :: 2 - Pre-Alpha",
42 "Environment :: Web Environment",
43 "Framework :: Django",
44 "Operating System :: OS Independent",
45 "Intended Audience :: Developers",
46 "License :: OSI Approved :: Apache Software License",
47 "Topic :: Software Development",
48 "Programming Language :: Python",
49 ],
50 long_description=open('README', "r").read(),
51)