forked from petryx/avell-a52-lights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.12 KB
/
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
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from codecs import open
from os import path
import os
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
packages = [
'avell_a52',
'avell_a52.driver',
]
setup(
name='avell_a52',
version='1.0.2',
description='A Project to provide a driver and interface to control keyboard rgb led of ITE 8291 V0.2 like Avell laptops',
scripts=['avell_a52/lightkeys'],
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/petryx/avell-a52-lights',
author='Petryx',
author_email='marlonpetry@gmail.com',
packages=packages,
install_requires=[
'pyusb',
],
project_urls={
'Bug Reports': 'https://github.com/petryx/avell-a52-lights/issues',
'Source': 'https://github.com/petryx/avell-a52-lights',
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
)