-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 780 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (22 loc) · 780 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
# protest.py
# by montoyamoraga
# to distribute, on terminal do
# python setup.py sdist
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='protest',
version='0.5.11',
url='https://github.com/montoyamoraga/protestpy',
author='montoyamoraga',
description='automatic generation of protesting material',
long_description=long_description,
license='MIT',
packages= find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['Pillow', 'videogrep', 'selenium<3.0.0', 'youtube_dl', 'chromedriver'],
package_data={'protest': ['*.ttf']}
)