-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 897 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
from pathlib import Path
from setuptools import setup, find_packages
thisDir = Path(__file__).parent
setup(
name='pyson_connect',
version='0.2.42',
author='Ryuse Sato(inchoxd)',
author_email='[email protected]',
description='pyson_connect: This is the third party module for using a Epson Connect',
long_description = (thisDir/'README.md').read_text(),
long_description_content_type = 'text/markdown',
url='https://github.com/clipper-programing/pyson_connect',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
install_requires=[
'requests>=2.25.1',
'Pillow>=8.0.1'
],
python_requires='>=3.6',
)