-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (41 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Copyright (c) 2015-2021 Erin Morelli.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
"""
from setuptools import setup, find_packages
setup(
name='em-slack-roll',
version=open('VERSION').read(),
author='Erin Morelli',
author_email='[email protected]',
url='https://slack-roll.herokuapp.com',
license='MIT',
platforms='Linux, OSX',
description='Roll some dice on Slack.',
long_description=open('README.md').read(),
packages=find_packages(),
include_package_data=True,
install_requires=[
'cryptography',
'Flask',
'Flask-SQLAlchemy',
'gunicorn',
'itsdangerous',
'keen',
'mysqlclient',
'newrelic',
'pkginfo',
'psycopg2-binary',
'slacker'
]
)