-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 764 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 764 Bytes
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
from distutils.core import setup
from setuptools import find_packages
# apt-get install libtiff5-dev libjpeg-dev zlib1g-dev libfreetype6-dev
REQUIREMENTS = [
'marvinbot','pillow','ffmpeg-python'
]
setup(name='marvinbot-meme-plugin',
version='0.1',
description='Meme Generator',
author='Conrado Reyes',
author_email='coreyes@gmail.com',
url='',
packages=[
'marvinbot_meme_plugin',
],
package_dir={
'marvinbot_meme_plugin':'marvinbot_meme_plugin'
},
zip_safe=False,
include_package_data=True,
package_data={'': ['*.ini']},
install_requires=REQUIREMENTS,
dependency_links=[
'git+ssh://git@github.com:BotDevGroup/marvin.git#egg=marvinbot',
],
)