forked from davidhamann/python-fmrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 860 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as ld:
long_description = ld.read()
setup(
name='python-fmrest',
version='1.7.4',
python_requires='>=3.6',
author='David Hamann',
author_email='[email protected]',
description='python-fmrest is a wrapper around the FileMaker Data API.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/davidhamann/python-fmrest',
packages=['fmrest'],
include_package_data=True,
install_requires=['requests>=2'],
extras_require={
'cloud': ['pycognito>=0.1.4']
},
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
)
)