-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 947 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
from setuptools import setup
setup(
name='python_intensifies',
version='0.2.1',
author="Carvell Scott",
author_email="[email protected]",
keywords=['intensify intensifies shaking memes'],
py_modules=['intensify'],
url="https://github.com/CarvellScott/",
install_requires=[
"Pillow>=7.1.0"
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Artistic Software',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
description="A tool for INTENSIFYING images.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"intensify=intensify:main"
]
}
)