2014-09-18 00:13:10 +03:00
|
|
|
from setuptools import setup, find_packages
|
2014-10-17 00:54:45 +03:00
|
|
|
import os
|
|
|
|
|
|
|
|
if os.environ.get('USER', '') == 'vagrant':
|
|
|
|
del os.link
|
2014-09-18 00:13:10 +03:00
|
|
|
|
|
|
|
DESCRIPTION = "Simple git based wiki"
|
|
|
|
|
2014-10-17 20:03:38 +03:00
|
|
|
with open('README.md') as f:
|
2014-09-18 00:13:10 +03:00
|
|
|
LONG_DESCRIPTION = f.read()
|
|
|
|
|
2014-10-22 23:38:32 +03:00
|
|
|
__version__ = None
|
|
|
|
exec(open('realms/version.py').read())
|
2014-09-18 00:13:10 +03:00
|
|
|
|
|
|
|
CLASSIFIERS = [
|
|
|
|
'Intended Audience :: Developers',
|
2014-10-17 00:54:45 +03:00
|
|
|
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
2014-09-18 00:13:10 +03:00
|
|
|
'Programming Language :: Python',
|
2014-10-17 00:54:45 +03:00
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content']
|
2014-09-18 00:13:10 +03:00
|
|
|
|
|
|
|
setup(name='realms-wiki',
|
2014-10-22 23:38:32 +03:00
|
|
|
version=__version__,
|
2014-09-18 00:13:10 +03:00
|
|
|
packages=find_packages(),
|
2014-10-22 23:38:32 +03:00
|
|
|
install_requires=[
|
|
|
|
'Flask==0.10.1',
|
|
|
|
'Flask-Assets==0.10',
|
|
|
|
'Flask-Cache==0.13.1',
|
|
|
|
'Flask-Login==0.2.11',
|
|
|
|
'Flask-SQLAlchemy==2.0',
|
|
|
|
'Flask-WTF==0.10.2',
|
|
|
|
'PyYAML==3.11',
|
|
|
|
'bcrypt==1.0.2',
|
|
|
|
'beautifulsoup4==4.3.2',
|
|
|
|
'click==3.3',
|
|
|
|
'gevent==1.0.1',
|
|
|
|
'ghdiff==0.4',
|
|
|
|
'gittle==0.4.0',
|
|
|
|
'gunicorn==19.1.1',
|
|
|
|
'itsdangerous==0.24',
|
|
|
|
'markdown2==2.3.0',
|
|
|
|
'simplejson==3.6.3'
|
|
|
|
],
|
2014-10-17 00:54:45 +03:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2014-10-24 02:58:58 +03:00
|
|
|
'realms-wiki = realms.commands:cli'
|
2014-10-17 00:54:45 +03:00
|
|
|
]},
|
2014-09-18 00:13:10 +03:00
|
|
|
author='Matthew Scragg',
|
|
|
|
author_email='scragg@gmail.com',
|
|
|
|
maintainer='Matthew Scragg',
|
|
|
|
maintainer_email='scragg@gmail.com',
|
|
|
|
url='https://github.com/scragg0x/realms-wiki',
|
|
|
|
license='GPLv2',
|
|
|
|
include_package_data=True,
|
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=LONG_DESCRIPTION,
|
|
|
|
platforms=['any'],
|
2014-09-19 05:49:48 +03:00
|
|
|
classifiers=CLASSIFIERS)
|