-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 975 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
32
33
import os
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as ld:
long_description = ld.read()
version = os.getenv('PACKAGE_VERSION', '0.0.1-dev')
setup(
name='fmdata',
version=version,
python_requires='>=3.8',
author='Lorenzo De Siena',
author_email='[email protected]',
description='python-fmdata is a wrapper around the FileMaker Data API.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Fenix22/python-fmdata',
packages=['fmdata'],
include_package_data=True,
install_requires=['requests>=2',
'typing_extensions>=3'],
extras_require={
'cloud': ['pycognito>=0.1.4']
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
]
)