mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-03-17 04:20:22 +00:00
28 lines
847 B
Python
28 lines
847 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='Daniel Greenfeld',
|
|
author_email='pydanny@gmail.com',
|
|
url='http://github.com/revsys/django-tos/tree/master',
|
|
packages=find_packages(),
|
|
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',
|
|
],
|
|
)
|