niche/setup.py

31 lines
863 B
Python
Raw Permalink Normal View History

import glob
2020-12-11 21:21:53 +01:00
from setuptools import find_packages, setup
setup(
name='niche',
version_format='{tag}.dev{commitcount}+{gitsha}',
setup_requires=['setuptools-git-version'],
url='https://juju.nz/src/juju/niche',
author='Michael Hope',
author_email='michaelh@juju.nz',
description='A community web log for monkey niches.',
zip_safe=False,
packages=find_packages(),
data_files=[
('lib/niche/templates', glob.glob('templates/*')),
('lib/niche/static/themes/common',
glob.glob('static/themes/common/*')),
('lib/niche/static/themes/able-wpcom',
glob.glob('static/themes/able-wpcom/*')),
],
2020-12-11 21:21:53 +01:00
install_requires=[
2020-12-11 21:39:05 +01:00
'passlib>=1.7.4',
'bleach>=3.2.1',
2020-12-11 21:50:44 +01:00
'markdown>=3.1.1',
2020-12-11 21:39:05 +01:00
'python-memcached>=1.59',
'web.py>=0.62',
2020-12-11 22:10:29 +01:00
'pymysql>=0.9.3',
2020-12-11 21:21:53 +01:00
],
)