Merge pull request #912 from soroushj/fix-visible-to-everyone-option
[Booktype.git] / setup.py
blob0bb5f17c4e70dc1a0ea5d39ead7d935197a32a3a
1 from setuptools import setup, find_packages
3 import os
6 def read(*rnames):
7 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
9 long_description = (
10 read('README.md')
11 + '\n' +
12 'Change history\n'
13 '**************\n'
14 + '\n' +
15 read('CHANGES.txt')
16 + '\n' +
17 'Contributors\n'
18 '************\n'
19 + '\n' +
20 read('AUTHORS.txt')
24 setup(
25 name="Booktype",
26 version="2.4.0",
28 packages=find_packages('lib'), # include all packages under lib
29 package_dir={'': 'lib'}, # tell distutils packages are under lib
31 author="Aleksandar Erkalovic",
32 author_email="aerkalov@gmail.com",
34 description="Booktype is a free, open source platform that produces" + \
35 "beautiful, engaging books formatted for print, Amazon, iBooks and" + \
36 "almost any ereader within minutes.",
37 long_description=long_description,
39 url="http://booktype.sourcefabric.org/",
40 include_package_data=True,
41 package_data={
42 # If any package contains *.txt or *.rst files, include them
43 '': ['*.txt', '*.rst'],
45 scripts=['scripts/createbooktype'],
47 install_requires=['setuptools', 'simplejson', 'django'],
48 classifiers=[
49 "License :: OSI Approved :: GNU General Public License (GPL)",
50 "Programming Language :: Python",
51 "Development Status :: 3 - Alpha",
52 "Intended Audience :: Developers",
53 "Intended Audience :: Information Technology",
54 "Framework :: Django",
56 keywords='collaborative book writing sprint',
57 license='AGPL',