mirror of
https://github.com/kawasaki/pyscrlink.git
synced 2025-07-20 17:11:21 +02:00
34 lines
955 B
Python
34 lines
955 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="pyscrlink",
|
|
version="0.2.8",
|
|
author="Shin'ichiro Kawasaki",
|
|
author_email='kawasaki@juno.dti.ne.jp',
|
|
description='Scratch-link for Linux with Python',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/kawasaki/pyscrlink",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3.6",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Operating System :: POSIX :: Linux",
|
|
],
|
|
python_requires='>=3.6',
|
|
install_requires=[
|
|
'websockets',
|
|
'bluepy',
|
|
'pyOpenSSL',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'scratch_link = pyscrlink.scratch_link:main',
|
|
'bluepy_helper_cap = pyscrlink.bluepy_helper_cap:setcap'
|
|
],
|
|
},
|
|
)
|