Spirit/setup.py

44 lines
1.4 KiB
Python
Raw Normal View History

2014-05-09 18:34:48 -03:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2015-04-07 21:14:10 -03:00
from __future__ import unicode_literals
2014-05-09 18:34:48 -03:00
import os
2014-05-18 20:37:30 -03:00
from setuptools import setup, find_packages
2014-05-09 18:34:48 -03:00
2015-04-07 21:14:10 -03:00
2014-05-09 18:34:48 -03:00
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
REQUIREMENTS = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-spirit',
2015-12-14 23:29:27 -03:00
version='0.4.6',
2014-05-09 18:34:48 -03:00
description='Spirit is a Python based forum powered by Django.',
author='Esteban Castro Borsani',
author_email='ecastroborsani@gmail.com',
long_description=README,
url='http://spirit-project.com/',
2014-05-18 20:37:30 -03:00
packages=find_packages(exclude=['example', ]),
2014-11-20 19:43:38 -03:00
test_suite="runtests.start",
2014-05-09 18:34:48 -03:00
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
license='MIT License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
2014-05-09 18:34:48 -03:00
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)