django-tos/setup.py
Frank Wiles ab60842258 Change author info
- Danny wrote this for us for a client originally back in the day,
      but in order to "own" the pypi record and not have him get bugged
      with support emails changing setup.py author info to Frank.
2016-05-20 16:15:37 -05:00

29 lines
872 B
Python

import os
from setuptools import setup, find_packages
from tos import VERSION
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup(
name='django-tos',
version=".".join(map(str, VERSION)),
description='django-tos is a reusable Django application for setting Terms of Service.',
long_description=readme,
author='Frank Wiles',
author_email='frank@revsys.com',
url='http://github.com/revsys/django-tos/tree/master',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)