-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.16 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
from setuptools import setup
VERSION = '0.2.2'
setup(
name='gobbler', version=VERSION, packages=['gobble'],
include_package_data=True,
package_data={'': ['*.png']},
url='https://github.com/rayssharma/gobble',
download_url='https://github.com/rayssharma/gobble/tarball/{}'.format(
VERSION), license='MIT', author='Ray Sharma',
author_email='ramon.sharma1@gmail.com',
description='Turkey-themed image catalog to boost the holiday mood.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['pillow>=6.2.1', 'pytest'], entry_points={
'console_scripts': ['gobble=gobble.gobble:main'],
}, classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
])