55 lines
2.1 KiB
Python
Executable File
55 lines
2.1 KiB
Python
Executable File
#
|
|
# Copyright (c) 2013 Dorian Pula <dorian.pula@amber-penguin-software.ca>
|
|
#
|
|
# Rookeries is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# Rookeries is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public
|
|
# License along with Rookeries. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Please share and enjoy!
|
|
#
|
|
|
|
"""
|
|
Setup for Rookeries simple site scaffolding.
|
|
|
|
:copyright: Copyright 2013, Dorian Pula <dorian.pula@amber-penguin-software.ca>
|
|
:license: AGPL v3+
|
|
"""
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(name='rookeries',
|
|
version='0.4.0',
|
|
description='Simple Site Scaffolding for Modern Web Applications',
|
|
|
|
author='Dorian Pula',
|
|
author_email='dorian.pula@amber-penguin-software.ca',
|
|
url='http://rookeri.es/',
|
|
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: Affero GNU General Public License v3.0',
|
|
'Natural Language :: English',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
],
|
|
keywords='scaffolding web application',
|
|
|
|
packages=setuptools.find_packages(exclude=['*test*']),
|
|
include_package_data=True,
|
|
install_requires=open('requirements.txt').readlines(),
|
|
)
|