-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 800 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 800 Bytes
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
from setuptools import setup
import iiab
setup(
name='Internet-in-a-Box',
version=iiab.__version__,
author="Braddock Gaskill",
author_email="braddock@braddock.com",
license="2-clause BSD license",
description="Sharing the world's Free information",
long_description=open('README.md').read(),
url="http://internet-in-a-box.org",
packages=['iiab'],
scripts=['iiab-server', 'iiab.wsgi'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask >= 0.10',
'Flask-Babel >= 0.8',
'Flask-AutoIndex',
'Flask-SQLAlchemy',
'SQLAlchemy >= 0.8.2',
'whoosh >= 2.6.0',
'backports.lzma >= 0.0.2',
'repoze.lru'
]
#data_files=[("", ["LICENSE.txt", "README.md", "INSTALL.txt"])]
)