-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
25 lines (23 loc) · 854 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
"""razer-cli - setup.py"""
from setuptools import setup, find_packages
LONG_DESC = open('README.md').read()
setup(
name="razer-cli",
version="2.2.1",
author="Lorenz Leitner",
author_email="[email protected]",
description="Control Razer devices from the command line",
long_description_content_type="text/markdown",
long_description=LONG_DESC,
url="https://github.com/lolei/razer-cli",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
packages=find_packages(),
entry_points={"console_scripts": ["razer-cli=razer_cli.razer_cli.main:main"]},
python_requires=">=3.6",
package_data={'': ['razer_cli/razer_cli/man_pages']},
include_package_data=True,
)