forked from rodgomesc/avell-unofficial-control-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.33 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
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()
def find_all(folder):
for (path, directories, filenames) in os.walk(folder):
for filename in filenames:
yield os.path.join('..', path, filename)
setup(
name='avell-unofficial-control-center',
version='1.0.2',
description='A Project to provide a driver and interface to control keyboard rgb led of ITE 8291 like Avell laptops', # Required
entry_points={'console_scripts': [
'aucc = aucc.main:main']},
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/rodgomesc/avell-unofficial-control-center', # Optional
author='Rodrigo Gomes da Cunha',
author_email='[email protected]',
packages=find_packages(),
package_data={'': list(find_all('aucc'))},
include_package_data=True,
install_requires=[
'pyusb',
'elevate'
],
project_urls={
'Bug Reports': 'https://github.com/rodgomesc/avell-unofficial-control-center/issues',
'Funding': 'https://www.buymeacoffee.com/KCZRP52U7',
'Source': 'https://github.com/rodgomesc/avell-unofficial-control-center',
},
)