-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 865 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(
name='formsg',
version='0.1.6',
packages=['formsg'],
description='A Python SDK for handling FormSG webhooks.',
long_description=README,
long_description_content_type='text/markdown',
author='5 Health Inc',
author_email='hello@botmd.io',
url='https://github.com/fivehealth/formsg-python-sdk',
license='MIT License',
install_requires=[
'pynacl>=1.4.0',
'requests',
],
python_requires='>=3',
keywords='django cache',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
],
)