-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 716 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 716 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
import giphypy
from setuptools import setup
version = giphypy.__version__
setup_kwargs = {
'name': 'giphypy',
'version': version,
'url': 'https://github.com/The-PyWaiters/GiphyPy',
'license': 'MIT',
'author': 'The PyWaiters',
'author_email': 'freshjelly12@yahoo.com',
'description': 'Python Wrapper for Giphy API',
'packages': ['giphypy'],
'install_requires': ['aiohttp', 'requests'],
'keywords': ['web', 'api', 'giphy', 'wrapper'],
'classifiers': [
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License'
],
}
setup(**setup_kwargs)