-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 810 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 810 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
from setuptools import setup
setup(
name='handywrapper',
version='1.0.7',
description='A Python wrapper for the Handshake API',
url='https://github.com/skunk-ink/handywrapper',
download_url='https://github.com/skunk-ink/handywrapper/archive/refs/tags/v1.0.7.tar.gz',
keywords=['handywrapper'],
author='skunk-ink',
author_email='murray.crawford85@gmail.com',
license='MIT',
packages=['handywrapper'],
install_requires=['requests>=2.22.0'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)