-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1 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
from setuptools import setup
setup(
name='asciiclip',
version='1.0.1',
author='leinstay',
author_email='[email protected]',
description='CLI tool that applies an ASCII filter to video or image.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/leinstay/asciiclip',
py_modules=['main'],
packages=['app'],
package_data={"app": ["*.ttf"], },
install_requires=[
"click",
"moviepy",
"pytube",
"Pillow",
],
python_requires='>=3.7',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Text Processing",
],
entry_points='''
[console_scripts]
asciiclip=main:generate
'''
)