forked from tocoteron/joycon-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 639 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='joycon-python',
version='0.1.2',
description='Python driver for Nintendo Switch Joy-Con',
long_description=readme,
long_description_content_type='text/markdown',
author='tokoroten-lab, atsukoba',
author_email='tokoroten.lab@gmail.com, atsuya_kobayashi@yahoo.co.jp',
url='https://github.com/tokoroten-lab/joycon-python',
license=license,
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.7'
]
)