-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
55 lines (44 loc) · 1.4 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.txt')
+ '\n' +
'Change history\n'
'**************\n'
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
read('AUTHORS.txt')
)
setup(
name = "Booktype",
version = "1.5",
packages = find_packages('lib'), # include all packages under src
package_dir = {'':'lib'}, # tell distutils packages are under src
author = "Aleksandar Erkalovic",
author_email = "aerkalov@gmail.com",
description = "FLOSS Manuals collaborative book writing tool",
long_description = long_description,
url = "http://booki-dev.flossmanuals.net/",
include_package_data = True,
package_data = {
# If any package contains *.txt or *.rst files, include them
'': ['*.txt', '*.rst'],
},
install_requires = ['setuptools', 'simplejson', 'django' ],
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Framework :: Django",
],
keywords='collaborative book writing sprint',
license='GPL',
)