mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-05-02 16:14:42 +00:00
29 lines
847 B
Python
29 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.txt'))
|
||
|
|
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',
|
||
|
|
],
|
||
|
|
)
|