-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (25 loc) · 1.19 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
"""Setup file for gracc_osg_reports"""
import sys
from setuptools import setup
setup(name='gracc-osg-reports',
version='3.4.0',
description='OSG GRACC Email Reports',
author_email='[email protected]',
author='Shreyas Bhat',
url='https://github.com/opensciencegrid/gracc-reporting',
packages=['gracc_osg_reports'],
install_requires=['gracc_reporting', 'elasticsearch_dsl', 'requests', 'pandas'],
entry_points={
'console_scripts': [
'osgflockingreport = gracc_osg_reports.OSGFlockingReporter:main',
'osgprojectreport = gracc_osg_reports.OSGProjectReporter:main',
'osgpersitereport = gracc_osg_reports.OSGPerSiteReporter:main',
'osgprobereport = gracc_osg_reports.ProbeReport:main',
'osgtopoppusagereport = gracc_osg_reports.TopOppUsageByFacility:main',
'osgmissingprojects = gracc_osg_reports.MissingProject:main',
'osgmissingvo = gracc_osg_reports.MissingVO:main',
'monthlysites = gracc_osg_reports.MonthlySitesViewReporter:main',
'payloadbatchreport = gracc_osg_reports.PayloadAndPilotHours:main',
]
}
)