40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
"""
|
|
The ScribeEngine package
|
|
"""
|
|
import os
|
|
from codecs import open
|
|
from setuptools import setup, find_packages
|
|
|
|
HERE = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(HERE, 'README.rst'), encoding='utf8') as f:
|
|
LONG_DESCRIPTION = f.read()
|
|
with open(os.path.join(HERE, 'requirements.txt'), encoding='utf8') as f:
|
|
INSTALL_REQUIRES = [line for line in f]
|
|
|
|
|
|
setup(
|
|
name='ScribeEngine',
|
|
version='0.2',
|
|
description='A blog engine written in Python',
|
|
long_description=LONG_DESCRIPTION,
|
|
url='https://launchpad.net/scribeengine',
|
|
author='Raoul Snyman',
|
|
author_email='raoul@snyman.info',
|
|
license='GPLv3+',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment,'
|
|
'Framework :: Flask',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
|
|
],
|
|
keywords='website blog',
|
|
packages=find_packages(),
|
|
install_requires=INSTALL_REQUIRES
|
|
)
|