-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 709 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 709 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="Reader",
version='0.1',
description=
"Reader project is a standalone web-based application and backend "
"service which provides an easy way to gather all your social feeds "
"into your own server.",
author="Anton Lazarev",
author_email="tony@lazarew.me",
url="http://github.com/tonylazarew/reader",
packages=[
"readerpr",
"readerpr.daemon",
"readerpr.daemon.contentplugins",
"readerpr.scripts",
"readerpr.test",
"readerpr.test.unit",
"readerpr.webface",
],
scripts=[
"bin/readerd",
"bin/rwebface"
],
)