-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·50 lines (48 loc) · 2 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='resourcesync_push',
version='0.5.0',
author='Harihar Shankar, Martin Klein, Herbert Van de Sompel',
author_email="[email protected]",
url="http://www.openarchives.org/rs/0.9.1/resourcesync",
download_url=
"https://github.com/hariharshankar/resourcesync_push/releases",
description="A ResourceSync PubSubHubhub implementation.",
long_description="ResourceSync PuSH is a PubsubHubbub implementation\
that also supports the ResourceSync change notification framework. \
This software provides Publisher, Hub and Subscriber modules with a \
RESTful API for easy integration in to existing systems.",
packages=[
'resourcesync_push',
'resourcesync_push.hub',
'resourcesync_push.publisher',
'resourcesync_push.subscriber'
],
keywords="resourcesync pubsubhubbub uwsgi python",
license='http://mementoweb.github.io/SiteStory/license.html',
install_requires=[
"uWSGI>=2.0.3",
"requests>=2.2.1",
"requests_futures>=0.9.4"
],
tests_require=[
'WebTest>=2.0.14'
],
test_suite='test',
scripts=['bin/resourcesync_hub',
'bin/resourcesync_sub',
'bin/resourcesync_pub'],
include_package_data=True,
zip_safe=False,
data_files=[('/etc/resourcesync_push', ['conf/resourcesync_push.ini',
'conf/resourcesync_hub.ini',
'conf/resourcesync_pub.ini',
'conf/resourcesync_sub.ini']),
('db', ['db/subscriptions.pk']),
('resourcesync_push/hub/templates',
['resourcesync_push/hub/templates/register.html',
'resourcesync_push/hub/templates/register_success.html']),
]
)