-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·32 lines (30 loc) · 918 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='randomwaite',
version='1.0.0',
description='random tarot generator',
url='https://github.com/nathanielksmith/randomwaite',
author='vilmibm shaksfrpease',
author_email='[email protected]',
license='GPL',
classifiers=[
'Topic :: Artistic Software',
'License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)',
],
keywords='tarot',
packages=['randomwaite'],
install_requires = ['flickrapi==2.1.2',
'Pillow==3.3.1',
'tweepy==3.5.0',
'pixelsorter==1.2',
'celery==3.1.23',
'redis==2.10.5',
],
include_package_data = True,
entry_points = {
'console_scripts': [
'randomwaite = randomwaite.__init__:main'
]
},
)