This repository has been archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
53 lines (47 loc) · 1.76 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
""" Setup file for statscache """
from setuptools import setup
def get_description():
with open('README.rst', 'r') as f:
return ''.join(f.readlines()[2:])
requires = [
'statscache',
]
tests_require = [
'nose'
]
setup(
name='statscache_plugins',
version='0.0.2',
description='Plugins for statscache, the fedmsg statistics daemon',
long_description=get_description(),
author='Ralph Bean',
author_email='rbean@redhat.com',
url="https://github.com/fedora-infra/statscache_plugins/",
download_url="https://pypi.python.org/pypi/statscache_plugins/",
license='LGPLv2+',
install_requires=requires,
tests_require=tests_require,
test_suite='nose.collector',
packages=['statscache_plugins'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Programming Language :: Python',
],
entry_points={
'statscache.plugin': [
"volume = statscache_plugins.volume.simple:plugins",
"releng = statscache_plugins.releng:Plugin",
#"volume_by_topic = statscache_plugins.volume.by_topic:plugins",
"volume_by_category = statscache_plugins.volume.by_category:plugins",
#"volume_by_user = statscache_plugins.volume.by_user:plugins",
#"volume_by_package = statscache_plugins.volume.by_package:plugins",
"pagure = statscache_plugins.pagure.pagure_contribution:plugins",
"pagure_users = statscache_plugins.pagure.pagure_users_contribution:plugins",
"pagure_project = statscache_plugins.pagure.pagure_project_contribution:plugins",
]
},
)