Rebranded to Tailbone.

This commit is contained in:
Lance Edgar 2013-09-01 07:27:47 -07:00
parent 47944767dc
commit 40efd8a3bc
111 changed files with 188 additions and 209 deletions

View file

@ -28,7 +28,7 @@ from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
execfile(os.path.join(here, 'rattail', 'pyramid', '_version.py'))
execfile(os.path.join(here, 'tailbone', '_version.py'))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
@ -68,13 +68,13 @@ requires = [
setup(
name = "rattail.pyramid",
name = "Tailbone",
version = __version__,
author = "Lance Edgar",
author_email = "lance@edbob.org",
url = "http://rattail.edbob.org/",
license = "GNU Affero GPL v3",
description = "Rattail Pyramid Framework",
description = "Backoffice Web Application for Rattail",
long_description = README + '\n\n' + CHANGES,
classifiers = [
@ -97,7 +97,6 @@ setup(
tests_require = requires + ['mock', 'nose', 'coverage', 'fixture'],
test_suite = 'nose.collector',
namespace_packages = ['rattail'],
packages = find_packages(),
include_package_data = True,
zip_safe = False,