-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 886 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='webbib',
version='0.1',
url='http://github.com/mfa/webbib/',
license='BSD',
author='Andreas Madsack',
author_email='Andreas.Madsack@ims.uni-stuttgart.de',
description='Bibliography website for bibtex data using Flask and pybtex',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': ['webbib-cli = webbib.main:cli_main'],
},
install_requires=[
'Flask>=0.7',
'babel',
'Flask-Babel',
'lxml',
'simplejson',
'pybtex'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)