-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
33 lines (28 loc) · 846 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
from setuptools import setup, find_packages
version = "0.2.4"
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='joycon-python',
version=version,
description='Python driver for Nintendo Switch Joy-Con',
long_description=readme,
long_description_content_type='text/markdown',
author='tokoroten-lab, atsukoba, pbsds',
author_email=', '.join([
]),
url='https://github.com/tokoroten-lab/joycon-python',
license=license,
packages=find_packages(),
# install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.7'
]
)