2010-06-18 16:24:33 +00:00
|
|
|
import os
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
from tos import VERSION
|
|
|
|
|
|
2010-12-22 20:39:11 +00:00
|
|
|
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
|
2010-06-18 16:24:33 +00:00
|
|
|
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='Daniel Greenfeld',
|
|
|
|
|
author_email='pydanny@gmail.com',
|
|
|
|
|
url='http://github.com/revsys/django-tos/tree/master',
|
|
|
|
|
packages=find_packages(),
|
2014-08-05 21:28:29 +00:00
|
|
|
include_package_data=True,
|
2010-06-18 16:24:33 +00:00
|
|
|
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',
|
|
|
|
|
],
|
|
|
|
|
)
|