-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.11 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
import setuptools
if __name__ == '__main__':
setuptools.setup(
name="groupmestats",
version="0.0.1",
author="Kyle Teske",
author_email="[email protected]",
description="Calculating and displaying groupme statistics",
packages=setuptools.find_packages(),
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
],
install_requires=[
'GroupyAPI',
'jinja2',
'Pillow',
'plotly',
'PyYAML',
],
entry_points={
'console_scripts': [
'gstat_fetch_data = groupmestats.groupserializer:gstat_fetch_data',
'gstat_gen_groups = groupmestats.grouplookup:gstat_gen_groups',
'gstat_gen_members = groupmestats.memberlookup:gstat_gen_members',
'gstat_help = groupmestats.help:gstat_help',
'gstat_stats = groupmestats.generatestats:gstat_stats',
'gstat_timeline = groupmestats.statistics:messagetimelineplot.gstat_timeline_main',
],
},
)